From d467da1ce43a05de0edb9651d0f304c7477bb13d Mon Sep 17 00:00:00 2001 From: guolanting Date: Sun, 21 Jun 2015 16:10:45 +0800 Subject: [PATCH] add a missing parenthesis --- 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 d837560585def..4999ef3823caa 100644 --- a/doc/manual/metaprogramming.rst +++ b/doc/manual/metaprogramming.rst @@ -525,7 +525,7 @@ is to call the :func:`show` function within the macro body:: julia> @showarg(1+1) :(1 + 1) - julia> @showarg(println("Yo!") + julia> @showarg(println("Yo!")) :(println("Yo!"))