diff options
author | Jason Yeo <jasonyeo88@gmail.com> | 2015-10-28 17:46:57 +0800 |
---|---|---|
committer | Jason Yeo <jasonyeo88@gmail.com> | 2015-10-28 17:46:57 +0800 |
commit | 4ff79b2554ca3d16e4b64d0d4b367191cdc31887 (patch) | |
tree | 486aada84d78888c3bc8279e70fc20e549be48cb /edn.html.markdown | |
parent | 5789ae677260840f8239d0054b051b06ef32d98c (diff) |
Fix minor typographical errors
Diffstat (limited to 'edn.html.markdown')
-rw-r--r-- | edn.html.markdown | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/edn.html.markdown b/edn.html.markdown index 14bb25b4..b303d63c 100644 --- a/edn.html.markdown +++ b/edn.html.markdown @@ -22,7 +22,7 @@ will see how it is extended later on. ;;; Basic Types ;;; ;;;;;;;;;;;;;;;;;;; -nil ; or aka null +nil ; also known in other languages as null ; Booleans true @@ -35,14 +35,15 @@ false ; Characters are preceeded by backslashes \g \r \a \c \e -; Keywords starts with a colon. They behave like enums. Kinda -; like symbols in ruby. +; Keywords start with a colon. They behave like enums. Kinda +; like symbols in Ruby. :eggs :cheese :olives -; Symbols are used to represent identifiers. You can namespace symbols by -; using /. Whatever preceeds / is the namespace of the name. +; Symbols are used to represent identifiers. They start with #. +; You can namespace symbols by using /. Whatever preceeds / is +; the namespace of the name. #spoon #kitchen/spoon ; not the same as #spoon #kitchen/fork @@ -52,7 +53,7 @@ false 42 3.14159 -; Lists are a sequence of values +; Lists are sequences of values (:bun :beef-patty 9 "yum!") ; Vectors allow random access |