From 1e97fa343304c7b1f6ff0bbe6f79ed521b33ad92 Mon Sep 17 00:00:00 2001 From: Adam Frey Date: Fri, 20 Oct 2017 14:50:20 -0400 Subject: [edn] Fix incorrect format for EDN symbols EDN symbols do not start with a # character --- edn.html.markdown | 12 ++++++------ 1 file 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 -- cgit v1.2.3