summaryrefslogtreecommitdiff
path: root/lispref/control.texi
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2006-07-18 00:08:15 +0000
committerRichard M. Stallman <rms@gnu.org>2006-07-18 00:08:15 +0000
commit827b7ee7c21894a634e217ddc40c10d865bd3536 (patch)
treef606b3b32435c20f656b25634eac5d46c2fced9e /lispref/control.texi
parent13cad7387493267b415fa30037a510b2064aae83 (diff)
downloademacs-827b7ee7c21894a634e217ddc40c10d865bd3536.tar.gz
Put period and comma inside quotes.
Diffstat (limited to 'lispref/control.texi')
-rw-r--r--lispref/control.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/lispref/control.texi b/lispref/control.texi
index 83bce85e0b3..3ed0b7f90ec 100644
--- a/lispref/control.texi
+++ b/lispref/control.texi
@@ -221,7 +221,7 @@ non-@code{nil}, the clause ``succeeds''; then @code{cond} evaluates its
@var{body-forms}, and the value of the last of @var{body-forms} becomes
the value of the @code{cond}. The remaining clauses are ignored.
-If the value of @var{condition} is @code{nil}, the clause ``fails'', so
+If the value of @var{condition} is @code{nil}, the clause ``fails,'' so
the @code{cond} moves on to the following clause, trying its
@var{condition}.
@@ -623,7 +623,7 @@ error is signaled with data @code{(@var{tag} @var{value})}.
@subsection Examples of @code{catch} and @code{throw}
One way to use @code{catch} and @code{throw} is to exit from a doubly
-nested loop. (In most languages, this would be done with a ``go to''.)
+nested loop. (In most languages, this would be done with a ``go to.'')
Here we compute @code{(foo @var{i} @var{j})} for @var{i} and @var{j}
varying from 0 to 9: