summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam Frey <adam@adamfrey.me>2017-10-20 14:50:20 -0400
committerGitHub <noreply@github.com>2017-10-20 14:50:20 -0400
commit1e97fa343304c7b1f6ff0bbe6f79ed521b33ad92 (patch)
tree8a6988b71d420d7b8b7c384d93b71d4a2e3cfc8f
parent4d3637bfc4b23dabcb393547fcce0890cdd4e308 (diff)
[edn] Fix incorrect format for EDN symbols
EDN symbols do not start with a # character
-rw-r--r--edn.html.markdown12
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