Corrected reference doc to explain 'var' special form as 'global variable' instead...
authorVladimir Sedach <vsedach@gmail.com>
Thu, 4 Dec 2008 05:49:19 +0000 (22:49 -0700)
committerVladimir Sedach <vsedach@gmail.com>
Thu, 4 Dec 2008 05:49:19 +0000 (22:49 -0700)
docs/reference.lisp

index 5979eb9..9e0f190 100644 (file)
@@ -725,7 +725,7 @@ a-variable  => aVariable
 (defvar *a* (array 1 2 3)) => var A = [ 1, 2, 3 ]
 
 ;;; One feature present in Parenscript that is not part of Common Lisp
-;;; is lexically-scoped function variables, which are declared using
+;;; are lexically-scoped global variables, which are declared using
 ;;; the `VAR' special form.
 
 ;;; Parenscript provides two versions of the `LET' and `LET*' special