(led-state, led-on): Fix typo in docstring.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 27 Nov 2006 17:06:34 +0000 (17:06 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 27 Nov 2006 17:06:34 +0000 (17:06 +0000)
lisp/vt100-led.el

index 541f06e..8310aa3 100644 (file)
@@ -29,7 +29,7 @@
 ;;; Code:
 
 (defvar led-state (make-vector 5 nil)
-   "The internal state of the LEDs.  Choices are nil, t, `flash.
+   "The internal state of the LEDs.  Choices are nil, t, 'flash.
 Element 0 is not used.")
 
 (defun led-flash (l)
@@ -46,7 +46,7 @@ Element 0 is not used.")
   (led-update))
 
 (defun led-on (l)
-  "Turn on LED l."
+  "Turn on LED L."
   (aset led-state l t)
   (led-update))