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

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

[nongnu] elpa/sweeprolog 9823b09f6a 02/11: * sweeprolog.el: fix some typ


From: ELPA Syncer
Subject: [nongnu] elpa/sweeprolog 9823b09f6a 02/11: * sweeprolog.el: fix some typos in docstrings
Date: Sun, 15 Jan 2023 05:02:48 -0500 (EST)

branch: elpa/sweeprolog
commit 9823b09f6a990ef0e1dc5af644b648621c3628cb
Author: Eshel Yaron <me@eshelyaron.com>
Commit: Eshel Yaron <me@eshelyaron.com>

    * sweeprolog.el: fix some typos in docstrings
---
 sweeprolog.el | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/sweeprolog.el b/sweeprolog.el
index 14c8567bc2..e62db75816 100644
--- a/sweeprolog.el
+++ b/sweeprolog.el
@@ -109,7 +109,7 @@ Prolog token as returned from 
`sweeprolog-last-token-boundaries'.")
   "Location of the SWI-Prolog source code root directory.
 
 When non-nil, the function `sweeprolog-predicate-location' will
-attempt to find the C defintions of SWI-Prolog native built-in
+attempt to find the C definitions of SWI-Prolog native built-in
 predicates.
 
 The value of this option can be a string, in which case it should
@@ -331,7 +331,7 @@ clause."
 
 It should take three arguments describing the new predicate,
 FUNCTOR, ARITY and NECK, and move point to a suitable position in
-the current buffer where the new predicate defintion should be
+the current buffer where the new predicate definition should be
 inserted.
 
 FUNCTOR is the predicate name given as a string, ARITY is its
@@ -353,7 +353,7 @@ non-terminals)."
   :group 'sweeprolog-top-level)
 
 (defcustom sweeprolog-highlight-holes t
-  "If non-nil, highlight holes in a dedicated faces."
+  "If non-nil, highlight holes in a dedicated face."
   :package-version '((sweeprolog "0.8.12"))
   :type 'boolean
   :group 'sweeprolog)
@@ -2371,7 +2371,7 @@ If VAR is nil, clear variable highlighting in the current 
clause
 instead.
 
 Interactively, operate on the clause at point.  If a prefix
-argument is specificed, clear variable highlighting in the
+argument is specified, clear variable highlighting in the
 current clause.  Otherwise prompt for VAR, defaulting to the
 variable at point, if any."
   (interactive (list (point)
@@ -2659,7 +2659,7 @@ buffer to load."
     fap))
 
 (defun sweeprolog-find-file-at-point (point)
-  "Find file specificed by the Prolog file spec at POINT.
+  "Find file specified by the Prolog file spec at POINT.
 
 Interactively, POINT is set to the current point."
   (interactive "d" sweeprolog-mode)
@@ -3168,7 +3168,7 @@ of them signal success by returning non-nil."
           (setq point nil))))))
 
 (defun sweeprolog-forward-predicate (&optional arg)
-  "Move forward over the ARGth next predicate defintion from point."
+  "Move forward over the ARGth next predicate definition from point."
   (interactive "p" sweeprolog-mode)
   (setq arg (or arg 1))
   (while (< 0 arg)
@@ -3183,7 +3183,7 @@ of them signal success by returning non-nil."
       (user-error "No next predicate"))))
 
 (defun sweeprolog-backward-predicate (&optional arg)
-  "Move backward over the ARGth next predicate defintion from point."
+  "Move backward over the ARGth next predicate definition from point."
   (interactive "p" sweeprolog-mode)
   (setq arg (or arg 1))
   (while (< 0 arg)



reply via email to

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