summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Vauban <sva@mygooglest.com>2012-02-16 15:50:17 +0100
committerEric Schulte <eric.schulte@gmx.com>2012-02-18 09:15:44 -0700
commit2d78957c5c63c6f7dc43732b7cda1c20835b3992 (patch)
tree6ad49886b38e1ae0b7ef4fca0abc7399b28f44b0
parentbf238997a9e173355be7b14d692249d674b11e34 (diff)
downloadorg-mode-2d78957c5c63c6f7dc43732b7cda1c20835b3992.tar.gz
Fix old Babel syntax
-rw-r--r--contrib/babel/library-of-babel.org2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/babel/library-of-babel.org b/contrib/babel/library-of-babel.org
index ecad0fe..0098e72 100644
--- a/contrib/babel/library-of-babel.org
+++ b/contrib/babel/library-of-babel.org
@@ -143,7 +143,7 @@ normal document.
#+end_src
example usage
-: #+source: fibs
+: #+name: fibs
: #+begin_src emacs-lisp :var n=8
: (flet ((fib (m) (if (< m 2) 1 (+ (fib (- m 1)) (fib (- m 2))))))
: (mapcar (lambda (el) (list el (fib el))) (number-sequence 0 (- n 1))))