]> git.eshelyaron.com Git - sweep.git/commitdiff
DOC: fix typos
authorEshel Yaron <me@eshelyaron.com>
Wed, 7 Sep 2022 18:48:55 +0000 (21:48 +0300)
committerEshel Yaron <me@eshelyaron.com>
Wed, 7 Sep 2022 18:50:59 +0000 (21:50 +0300)
README.org

index 7d98fd940a759f0600750ff45b1b687fea8a3aa2..819fa37794f37f957e76de3a818f766d49e7f47c 100644 (file)
@@ -134,11 +134,11 @@ afterwards =sweep-initialize= can be called to start Prolog anew.
 #+FINDEX: sweep-open-query
 =sweep= provides the Elisp function =sweep-open-query= for invoking Prolog
 predicates.  The invoked predicate must be of arity two and will be
-called in mode =p(+In, -Out)= i.e. the predicate should treat the
-first argument as input and expect a variable for the second argument
-which should be unified with the some output.  This restriction is
-placed in order to facilitate a natural calling convention between
-Elisp, a functional language, and Prolog, a logical one.
+called in mode =p(+In, -Out)= i.e. the predicate should treat the first
+argument as input and expect a variable for the second argument which
+should be unified with some output.  This restriction is placed in
+order to facilitate a natural calling convention between Elisp, a
+functional language, and Prolog, a logical one.
 
 The =sweep-open-query= function takes five arguments, the first three
 are strings which denote:
@@ -152,7 +152,7 @@ The fourth argument to =sweep-open-query= is converted into a Prolog
 term and used as the first argument of the predicate (see [[Conversion
 of Elisp objects to Prolog terms]]).  The fifth argument is an
 optional "reverse" flag, when this flag is set to non-nil, the order
-of the arguments is reversed such the predicate is called in mode
+of the arguments is reversed such that the predicate is called in mode
 =p(-Out, +In)= rather than =p(+In, -Out)=.
 
 #+FINDEX: sweep-next-solution