From 758263300d2eeb6b3a22fe9009c1830a7009c66b Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Sat, 4 Oct 2014 15:04:02 -0400 Subject: [PATCH] minor change for bare strings --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0bbf5f3..d57c5e0 100644 --- a/README.md +++ b/README.md @@ -66,9 +66,9 @@ the rest of the elements as arguments. This evaluates to the number 5: (":" ":+" 1 2) ``` -A bare `:` or `.` string (lacking in `"`) is a shortcut for `":"` or `"."`, -respectively. An otherwise bare string is a shortcut for that string prefixed by -a `:`. This is equivalent to the previous example: +A bare string (lacking in `"`) is automatically prefixed with a `:`, if it +doesn't already have one. So `":+"`, `:+`, and `+`, are equivalent. `":"` and +`:` are also equivalent. This is equivalent to the previous example: ``` (: + 1 2)