emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/arduino-mode b92f309 048/107: improve commands docstring t


From: ELPA Syncer
Subject: [nongnu] elpa/arduino-mode b92f309 048/107: improve commands docstring to be more intuitive
Date: Sun, 29 Aug 2021 10:58:14 -0400 (EDT)

branch: elpa/arduino-mode
commit b92f3093afa672e7c3f749a0d531fbac8d434e10
Author: stardiviner <numbchild@gmail.com>
Commit: stardiviner <numbchild@gmail.com>

    improve commands docstring to be more intuitive
---
 arduino-mode.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/arduino-mode.el b/arduino-mode.el
index 15d2eaa..4d0d9ba 100644
--- a/arduino-mode.el
+++ b/arduino-mode.el
@@ -180,13 +180,13 @@ Each list item should be a regexp matching a single 
identifier."
                                nil ["Serial monitor" arduino-serial-monitor t])
 
 (defun arduino-upload ()
-  "Upload the sketch to an Arduino board."
+  "Build and upload the sketch to an Arduino board."
   (interactive)
   (start-file-process
    "arduino-upload" "*arduino-upload*" arduino-executable "--upload" 
(buffer-file-name)))
 
-(defun arduino-verify ()
-  "Verify the sketch."
+(defun arduino-build ()
+  "Verify the sketch by building it."
   (interactive)
   (start-file-process
    "arduino-verify" "*arduino-verify*" arduino-executable "--verify" 
(buffer-file-name)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]