diff options
| author | Luis Custodio <luis.custodio@gmail.com> | 2015-10-17 13:11:25 +0200 | 
|---|---|---|
| committer | Luis Custodio <luis.custodio@gmail.com> | 2015-10-17 13:11:25 +0200 | 
| commit | f5873b08901bfaec3fb46518258ff9e886fd04c4 (patch) | |
| tree | 62886b71c7226f0c6c4f979d61ff96c839a641a9 /common-lisp.html.markdown | |
| parent | c9348e5a82b639093f8f3eee955ffdf6fb99b5d8 (diff) | |
| parent | 0e6d9f6fe9aeffc64c3adad3e4a0ee1cc0d1dd88 (diff) | |
Merge branch 'master' of github.com:adambard/learnxinyminutes-docs
Diffstat (limited to 'common-lisp.html.markdown')
| -rw-r--r-- | common-lisp.html.markdown | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/common-lisp.html.markdown b/common-lisp.html.markdown index e0597e94..63183c1e 100644 --- a/common-lisp.html.markdown +++ b/common-lisp.html.markdown @@ -261,7 +261,7 @@ nil                  ; for false - and the empty list  (defparameter *adjvec* (make-array '(3) :initial-contents '(1 2 3)        :adjustable t :fill-pointer t)) -       +  *adjvec* ; => #(1 2 3)  ;; Adding new element: | 
