summaryrefslogtreecommitdiff
path: root/lisp/textmodes/spell.el
diff options
context:
space:
mode:
authorChristopher Zaborsky <rogue@erratum.com>1992-11-03 21:33:58 +0000
committerChristopher Zaborsky <rogue@erratum.com>1992-11-03 21:33:58 +0000
commitfcec83fbc89c3decd1c46720b23386ed43c8786d (patch)
tree4fae50c2b160ecc1935676a3193f047371f36998 /lisp/textmodes/spell.el
parentcc9875f9f58a1056c133eb2a824bfd9b479c0584 (diff)
downloademacs-fcec83fbc89c3decd1c46720b23386ed43c8786d.tar.gz
emacs-fcec83fbc89c3decd1c46720b23386ed43c8786d.tar.bz2
emacs-fcec83fbc89c3decd1c46720b23386ed43c8786d.zip
Dox fix.
Diffstat (limited to 'lisp/textmodes/spell.el')
-rw-r--r--lisp/textmodes/spell.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/spell.el b/lisp/textmodes/spell.el
index b5ed7777540..02c7c4eb118 100644
--- a/lisp/textmodes/spell.el
+++ b/lisp/textmodes/spell.el
@@ -44,7 +44,7 @@ as its \"correct\" spelling; then the query replace is skipped."
(defun spell-word ()
"Check spelling of word at or before point.
If it is not correct, ask user for the correct spelling
-and query-replace the entire buffer to substitute it."
+and `query-replace' the entire buffer to substitute it."
(interactive)
(let (beg end spell-filter)
(save-excursion
@@ -57,7 +57,7 @@ and query-replace the entire buffer to substitute it."
;;;###autoload
(defun spell-region (start end &optional description)
- "Like spell-buffer but applies only to region.
+ "Like `spell-buffer' but applies only to region.
Used in a program, applies from START to END.
DESCRIPTION is an optional string naming the unit being checked:
for example, \"word\"."