summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndre Polykanine A.K.A. Menelion ElensĂșlĂ« <andre@oire.org>2017-10-21 12:50:35 +0300
committerGitHub <noreply@github.com>2017-10-21 12:50:35 +0300
commitb88f112e37033012a8ba4072d5ab8bd1f35cfca8 (patch)
tree73a12d4148a2b97a561ad71bbda718ae03020afd
parent2dc7a13e5408326b6aa4bd1d60bc6418cab3a99a (diff)
parent1e97fa343304c7b1f6ff0bbe6f79ed521b33ad92 (diff)
Merge pull request #2927 from AdamFrey/patch-1
[edn] Fix incorrect format for EDN symbols
-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