]> git.eshelyaron.com Git - emacs.git/commitdiff
; * doc/lispref/control.texi (Conditionals): Fix wording.
authorEli Zaretskii <eliz@gnu.org>
Wed, 28 Sep 2022 12:49:32 +0000 (15:49 +0300)
committerEli Zaretskii <eliz@gnu.org>
Wed, 28 Sep 2022 12:49:32 +0000 (15:49 +0300)
doc/lispref/control.texi

index 9635b335bca18329ae8c16e34b23569dfa5c4929..e0c5ddf2cb80af705279abe666f2652673bf85f7 100644 (file)
@@ -295,9 +295,9 @@ For example:
 @end example
 
 If can be convenient to bind variables in conjunction with using a
-conditional.  It's often the case that you do a computation, and then
-want to do something with that computation if it's non-@code{nil}.
-The straightforward way to do that is to just write, for instance:
+conditional.  It's often the case that you compute a value, and then
+want to do something with that value if it's non-@code{nil}.  The
+straightforward way to do that is to just write, for instance:
 
 @example
 (let ((result1 (do-computation)))