From e2a44d8865f1a48f8706de0a1254c7741b1c018a Mon Sep 17 00:00:00 2001 From: Rich Morin Date: Mon, 9 Jun 2014 15:45:59 -0700 Subject: [PATCH] fix minor copy error --- doc/manual/metaprogramming.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/manual/metaprogramming.rst b/doc/manual/metaprogramming.rst index 3ec430e827f4b..6674f17b61403 100644 --- a/doc/manual/metaprogramming.rst +++ b/doc/manual/metaprogramming.rst @@ -552,7 +552,7 @@ Perhaps surprisingly, these behaviors are not hard-coded into the Julia parser or compiler. Instead, they are custom behaviors provided by a general mechanism that anyone can use: prefixed string literals are parsed as calls to specially-named macros. For example, the regular -expression macros is just the following:: +expression macro is just the following:: macro r_str(p) Regex(p)