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

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

[elpa] externals/landmark d60a1c1 4/7: Fix some quoting problems in doc


From: Stefan Monnier
Subject: [elpa] externals/landmark d60a1c1 4/7: Fix some quoting problems in doc strings
Date: Tue, 1 Dec 2020 16:15:07 -0500 (EST)

branch: externals/landmark
commit d60a1c1dfe8e79729cc3b1a56893f30d5cfda669
Author: Paul Eggert <eggert@cs.ucla.edu>
Commit: Paul Eggert <eggert@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.
---
 landmark.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/landmark.el b/landmark.el
index 6230dba..9b48901 100644
--- a/landmark.el
+++ b/landmark.el
@@ -864,7 +864,7 @@ If the game is finished, this command requests for another 
game."
   (move-to-column (+ landmark-x-offset (* landmark-square-width (1- x)))))
 
 (defun landmark-plot-square (square value)
-  "Draw 'X', 'O' or '.' on SQUARE depending on VALUE, leave point there."
+  "Draw `X', `O' or `.' on SQUARE depending on VALUE, leave point there."
   (or (= value 1)
       (landmark-goto-square square))
   (let ((inhibit-read-only t))



reply via email to

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