summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorDominik Picheta <dominikpicheta@googlemail.com>2017-05-10 13:41:59 +0100
committerGitHub <noreply@github.com>2017-05-10 13:41:59 +0100
commite17770682c671503f575c1498a5fac703f82ab2b (patch)
tree8e3ca80b2ae3ceff601086d7eb6f87941a317499
parent6e0e3b75cf419f9f2e61aeccaa59f91160e29628 (diff)
parent2e7551f17eeff16715dd788e076d40fe3eb07879 (diff)
downloadNim-e17770682c671503f575c1498a5fac703f82ab2b.tar.gz
Merge pull request #5797 from knockoutMice/patch-1
Fix a typo in the Result variable block
-rw-r--r--doc/tut1.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tut1.rst b/doc/tut1.rst
index 06ee84c0d..de89a0b2d 100644
--- a/doc/tut1.rst
+++ b/doc/tut1.rst
@@ -599,7 +599,7 @@ Result variable
 A procedure that returns a value has an implicit ``result`` variable declared
 that represents the return value. A ``return`` statement with no expression is a
 shorthand for ``return result``. The ``result`` value is always returned
-automatically at the end a procedure if there is no ``return`` statement at
+automatically at the end of a procedure if there is no ``return`` statement at
 the exit.
 
 .. code-block:: nim