minor change for bare strings

This commit is contained in:
Brian Picciano 2014-10-04 15:04:02 -04:00
parent f5cd038493
commit 758263300d

View File

@ -66,9 +66,9 @@ the rest of the elements as arguments. This evaluates to the number 5:
(":" ":+" 1 2) (":" ":+" 1 2)
``` ```
A bare `:` or `.` string (lacking in `"`) is a shortcut for `":"` or `"."`, A bare string (lacking in `"`) is automatically prefixed with a `:`, if it
respectively. An otherwise bare string is a shortcut for that string prefixed by doesn't already have one. So `":+"`, `:+`, and `+`, are equivalent. `":"` and
a `:`. This is equivalent to the previous example: `:` are also equivalent. This is equivalent to the previous example:
``` ```
(: + 1 2) (: + 1 2)