diff options
Diffstat (limited to 'doc/lispref/compile.texi')
-rw-r--r-- | doc/lispref/compile.texi | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/lispref/compile.texi b/doc/lispref/compile.texi index f088934f5f1..7d5f3fcf7c5 100644 --- a/doc/lispref/compile.texi +++ b/doc/lispref/compile.texi @@ -657,7 +657,7 @@ Lisp source; these do not appear in the output of @code{disassemble}. 11 sub1 ; @r{Pop @code{integer}, decrement value,} ; @r{push new value onto stack.} 12 call 1 ; @r{Call function @code{factorial} using first} - ; @r{(i.e. top) stack element as argument;} + ; @r{(i.e., top) stack element as argument;} ; @r{push returned value onto stack.} @end group @group @@ -704,7 +704,7 @@ The @code{silly-loop} function is somewhat more complex: 4 sub1 ; @r{Subtract 1 from top of stack.} @end group @group -5 dup ; @r{Duplicate top of stack; i.e. copy the top} +5 dup ; @r{Duplicate top of stack; i.e., copy the top} ; @r{of the stack and push copy onto stack.} 6 varset n ; @r{Pop the top of the stack,} ; @r{and bind @code{n} to the value.} @@ -737,4 +737,3 @@ The @code{silly-loop} function is somewhat more complex: 17 return ; @r{Return value of the top of stack.} @end group @end example - |