mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
[edn] Fix incorrect format for EDN symbols
EDN symbols do not start with a # character
This commit is contained in:
parent
4d3637bfc4
commit
1e97fa3433
@ -44,13 +44,13 @@ false
|
|||||||
:cheese
|
:cheese
|
||||||
:olives
|
: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
|
; You can namespace symbols by using /. Whatever precedes / is
|
||||||
; the namespace of the name.
|
; the namespace of the symbol.
|
||||||
#spoon
|
spoon
|
||||||
#kitchen/spoon ; not the same as #spoon
|
kitchen/spoon ; not the same as spoon
|
||||||
#kitchen/fork
|
kitchen/fork
|
||||||
#github/fork ; you can't eat with this
|
github/fork ; you can't eat with this
|
||||||
|
|
||||||
; Integers and floats
|
; Integers and floats
|
||||||
42
|
42
|
||||||
|
Loading…
Reference in New Issue
Block a user