branch: elpa/paredit
commit 9eaeed9ba096e125cad2174545e17a1b8d0f2c76
Author: Taylor R Campbell <campb...@paredit.org>
Commit: Taylor R Campbell <campb...@paredit.org>

    Fix some typos in docstrings, from Tomas Volf.
---
 CREDITS    | 1 +
 paredit.el | 6 +++---
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/CREDITS b/CREDITS
index efdf5ce60e..532158a5d5 100644
--- a/CREDITS
+++ b/CREDITS
@@ -37,6 +37,7 @@ Tobias C. Rittweiler
 Andreas Roehler
 Jorgen Schäfer
 Vladimir Sedach
+Tomas Volf
 Michael Weber
 Goran Weinholt
 Norman Werner
diff --git a/paredit.el b/paredit.el
index b5f96bc52b..a326f80260 100644
--- a/paredit.el
+++ b/paredit.el
@@ -913,7 +913,7 @@ If in a character literal, do nothing.  This prevents 
accidentally
 
 (defun paredit-meta-doublequote (&optional n)
   "Move to the end of the string.
-If not in a string, act as `paredit-doublequote'; if not prefix argument
+If not in a string, act as `paredit-doublequote'; if no prefix argument
  is specified and the region is not active or `transient-mark-mode' is
  disabled, the default is to wrap one S-expression, however, not zero."
   (interactive "P")
@@ -923,7 +923,7 @@ If not in a string, act as `paredit-doublequote'; if not 
prefix argument
 
 (defun paredit-meta-doublequote-and-newline (&optional n)
   "Move to the end of the string, insert a newline, and indent.
-If not in a string, act as `paredit-doublequote'; if not prefix argument
+If not in a string, act as `paredit-doublequote'; if no prefix argument
  is specified and the region is not active or `transient-mark-mode' is
  disabled, the default is to wrap one S-expression, however, not zero."
   (interactive "P")
@@ -1954,7 +1954,7 @@ If there are no more S-expressions in this one before the 
closing
 (defun-motion paredit-backward (&optional arg)
   "Move backward an S-expression, or up an S-expression backward.
 If there are no more S-expressions in this one before the opening
-  delimiter, move past that opening delimiter backward; otherwise, move
+  delimiter, move past that opening delimiter backward; otherwise,
   move backward past the S-expression preceding the point."
   (let ((n (or arg 1)))
     (cond ((< 0 n) (dotimes (i n)       (paredit-move-backward)))

Reply via email to