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

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

[elpa] 276/352: Put quotes `...' around the example function add-word-to


From: Stefan Monnier
Subject: [elpa] 276/352: Put quotes `...' around the example function add-word-to-dictionary
Date: Mon, 07 Jul 2014 14:04:55 +0000

monnier pushed a commit to branch master
in repository elpa.

commit 1cf57d0ef6f76a86993e41d6f1ca14d54a6827e1
Author: Teemu Likonen <address@hidden>
Date:   Fri Jul 1 09:52:22 2011 +0300

    Put quotes `...' around the example function add-word-to-dictionary
---
 README         |    4 ++--
 wcheck-mode.el |   11 ++++++-----
 2 files changed, 8 insertions(+), 7 deletions(-)

diff --git a/README b/README
index 134b7eb..10e70f6 100644
--- a/README
+++ b/README
@@ -192,7 +192,7 @@ configuration above except that `action-parser' function is 
a bit more
 complicated. It's a lambda expression which calls
 `wcheck-parser-ispell-suggestions' and then adds "Add to dictionary"
 option in the front of the spelling suggestions list. Choosing that
-option from the actions menu will call function add-word-to-dictionary
+option from the actions menu will call function `add-word-to-dictionary'
 (which doesn't exist yet).
 
     ("British English"
@@ -205,7 +205,7 @@ option from the actions menu will call function 
add-word-to-dictionary
                                     'add-word-to-dictionary)
                               (wcheck-parser-ispell-suggestions)))))
 
-Now we need to define the function add-word-to-dictionary. Below is an
+Now we need to define the function `add-word-to-dictionary'. Below is an
 incomplete example. To make it complete you'll have to find out how and
 where your spelling checker stores user dictionaries. Then write code
 that adds a new string to the dictionary.
diff --git a/wcheck-mode.el b/wcheck-mode.el
index f83d17e..85ef266 100644
--- a/wcheck-mode.el
+++ b/wcheck-mode.el
@@ -612,7 +612,7 @@ there's the language configuration. The example is similar 
to the
 expression which calls `wcheck-parser-ispell-suggestions' and
 then adds \"Add to dictionary\" option in the front of the
 spelling suggestions list. Choosing that option from the actions
-menu will call function add-word-to-dictionary (which doesn't
+menu will call function `add-word-to-dictionary' (which doesn't
 exist yet).
 
     (\"British English\"
@@ -625,10 +625,11 @@ exist yet).
                                     'add-word-to-dictionary)
                               (wcheck-parser-ispell-suggestions)))))
 
-Now we need to define the function add-word-to-dictionary. Below
-is an incomplete example. To make it complete you'll have to find
-out how and where your spelling checker stores user dictionaries.
-Then write code that adds a new string to the dictionary.
+Now we need to define the function `add-word-to-dictionary'.
+Below is an incomplete example. To make it complete you'll have
+to find out how and where your spelling checker stores user
+dictionaries. Then write code that adds a new string to the
+dictionary.
 
     (defun add-word-to-dictionary (marked-text)
       ;; MARKED-TEXT is a vector returned by



reply via email to

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