From 27962fb4412f2cbc1bdd664702d0e1cb2bc0198b Mon Sep 17 00:00:00 2001 From: Nicolas Dandrimont Date: Fri, 17 Jan 2014 20:28:24 +0100 Subject: [PATCH] Light copy-editing --- docs/language/readermacros.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/language/readermacros.rst b/docs/language/readermacros.rst index a87b98d..392feb6 100644 --- a/docs/language/readermacros.rst +++ b/docs/language/readermacros.rst @@ -24,7 +24,7 @@ Syntax => #^1+2+3+4+3+2 1+2+3+4+3+2 -Hy got no literal for tuples. Lets say you dislike `(, ...)` and want something +Hy has no literal for tuples. Lets say you dislike `(, ...)` and want something else. This is a problem reader macros are able to solve in a neat way. :: @@ -33,7 +33,7 @@ else. This is a problem reader macros are able to solve in a neat way. => #t(1 2 3) (1, 2, 3) -You could even do like clojure, and have a litteral for regular expressions! +You could even do like clojure, and have a literal for regular expressions! ::