diff options
author | Nami-Doc <vendethiel@hotmail.fr> | 2014-04-03 11:03:01 +0200 |
---|---|---|
committer | Nami-Doc <vendethiel@hotmail.fr> | 2014-04-03 11:03:01 +0200 |
commit | 9b1f4f1cb37a327d60a830196735f9d01d23294e (patch) | |
tree | 1dba0d0e5e0128795e8a67b68e24f2c56da8f62c | |
parent | 6fcf30a78c541c2c88b003752892cb433b8c6268 (diff) | |
parent | 5c70a9fa19ef1005c31d0cd878bcef8a3e1d3ccd (diff) |
Merge pull request #590 from jorams/cl-intro-typo
[common-lisp/en] Fix typo in Common Lisp introduction.
-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 dda60797..8de81549 100644 --- a/common-lisp.html.markdown +++ b/common-lisp.html.markdown @@ -8,7 +8,7 @@ contributors: ANSI Common Lisp is a general purpose, multi-paradigm programming language suited for a wide variety of industry applications. It is -frequently referred to a programmable programming language. +frequently referred to as a programmable programming language. The classic starting point is [Practical Common Lisp and freely available.](http://www.gigamonkeys.com/book/) @@ -140,7 +140,7 @@ nil ; for false - and the empty list ;; 2. Variables ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; You can create a global (dynamically scoped) using defparameter -;; a variable name can use any character except: ()[]{}",'`;#|\ +;; a variable name can use any character except: ()",'`;#|\ ;; Dynamically scoped variables should have earmuffs in their name! |