diff options
author | sirgazil <felipe.lopez@openmailbox.org> | 2016-08-07 13:32:32 -0500 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2016-08-08 00:06:32 +0200 |
commit | 24502780eb1711d9f2ac550da0a16b78a24eae27 (patch) | |
tree | bbbf65d2974fe844fd5e2263e30178abb03d5aec | |
parent | 96d3cb3fcf834f3e017ad69548c89bcf61f3a19c (diff) | |
download | guile-24502780eb1711d9f2ac550da0a16b78a24eae27.tar.gz |
Fix typo about variable definitions
* doc/ref/api-binding.texi (Top Level Variable Definitions): Fix typo.
-rw-r--r-- | doc/ref/api-binding.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ref/api-binding.texi b/doc/ref/api-binding.texi index 5857e782f..c3ee01b8c 100644 --- a/doc/ref/api-binding.texi +++ b/doc/ref/api-binding.texi @@ -93,7 +93,7 @@ Many people end up in a development style of adding and changing definitions at runtime, building out their program without restarting it. (You can do this using @code{reload-module}, the @code{reload} REPL command, the @code{load} procedure, or even just pasting code into a -REPL.) If you are one of these people, you will find that sometimes you +REPL.) If you are one of these people, you will find that sometimes there are some variables that you @emph{don't} want to redefine all the time. For these, use @code{define-once}. @@ -301,7 +301,7 @@ following case: (define a 1) (define b (+ a a)) (+ a b)) -@end lisp +@end lisp @noindent Guile decided to follow the R6RS in this regard, and now expands |