diff options
author | Divay Prakash <divayprakash@users.noreply.github.com> | 2018-10-09 22:44:51 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-09 22:44:51 +0530 |
commit | 2cc496c3ef0fcc98f52266733ff14b6c222eeda7 (patch) | |
tree | c9514aa882857af1631b836aca38b7c736615e93 | |
parent | ed67bee58dc981306be0dc64be112a88603a5e80 (diff) | |
parent | e2fbb26b6ac1eda7df063f2936e08dd624bf38fc (diff) |
Merge pull request #3272 from divayprakash/fix-common-lisp
Fix error in unbound variable description, closes #2577
-rw-r--r-- | common-lisp.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common-lisp.html.markdown b/common-lisp.html.markdown index 28b5173b..73843436 100644 --- a/common-lisp.html.markdown +++ b/common-lisp.html.markdown @@ -181,8 +181,8 @@ nil ; false; also, the empty list: () ;;; You can also use unicode characters. (defparameter *AΛB* nil) -;;; Accessing a previously unbound variable is an undefined behavior, but -;;; possible. Don't do it. +;;; Accessing a previously unbound variable results in an UNBOUND-VARIABLE +;;; error, however it is defined behavior. Don't do it. ;;; You can create local bindings with LET. In the following snippet, `me` is ;;; bound to "dance with you" only within the (let ...). LET always returns |