branch: externals/electric-spacing
commit 7587e10c183f01bec55b206e8096cda9060bd217
Author: Paul Eggert <egg...@cs.ucla.edu>
Commit: Paul Eggert <egg...@cs.ucla.edu>

    Fix some quoting problems in doc strings
    
    Most of these are minor issues involving, e.g., quoting `like this'
    instead of 'like this'.  A few involve escaping ` and ' with a
    preceding \= when the characters should not be turned into curved single
    quotes.
---
 electric-spacing.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/electric-spacing.el b/electric-spacing.el
index 8ae509a..14e8ce0 100644
--- a/electric-spacing.el
+++ b/electric-spacing.el
@@ -42,7 +42,7 @@
 ;;; electric-spacing minor mode
 
 (defcustom electric-spacing-double-space-docs t
-  "Enable double spacing of . in document lines - e,g, type '.' => get '.  '."
+  "Enable double spacing of . in document lines - e.g., type `.' => get `.  '."
   :type 'boolean
   :group 'electricity)
 
@@ -86,8 +86,8 @@ positive, and disable it otherwise.  If called from Lisp, 
enable
 the mode if ARG is omitted or nil.
 
 This is a local minor mode.  When enabled, typing an operator automatically
-inserts surrounding spaces.  e.g., `=' becomes ` = ',`+=' becomes ` += '.  This
-is very handy for many programming languages."
+inserts surrounding spaces.  e.g., `=' becomes ` = ', `+=' becomes ` += '.
+This is very handy for many programming languages."
   :global nil
   :group 'electricity
   :lighter " _+_")

Reply via email to