diff options
author | Adam Frey <adam@adamfrey.me> | 2017-10-20 14:50:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-20 14:50:20 -0400 |
commit | 1e97fa343304c7b1f6ff0bbe6f79ed521b33ad92 (patch) | |
tree | 8a6988b71d420d7b8b7c384d93b71d4a2e3cfc8f /edn.html.markdown | |
parent | 4d3637bfc4b23dabcb393547fcce0890cdd4e308 (diff) |
[edn] Fix incorrect format for EDN symbols
EDN symbols do not start with a # character
Diffstat (limited to 'edn.html.markdown')
-rw-r--r-- | edn.html.markdown | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/edn.html.markdown b/edn.html.markdown index 04346eb8..9ecfb24f 100644 --- a/edn.html.markdown +++ b/edn.html.markdown @@ -44,13 +44,13 @@ false :cheese :olives -; Symbols are used to represent identifiers. They start with #. +; Symbols are used to represent identifiers. ; You can namespace symbols by using /. Whatever precedes / is -; the namespace of the name. -#spoon -#kitchen/spoon ; not the same as #spoon -#kitchen/fork -#github/fork ; you can't eat with this +; the namespace of the symbol. +spoon +kitchen/spoon ; not the same as spoon +kitchen/fork +github/fork ; you can't eat with this ; Integers and floats 42 |