summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2017-03-14 14:02:30 +0100
committerAndreas Rumpf <rumpf_a@web.de>2017-03-14 14:02:30 +0100
commit5de728a2df580c6c6b201ea78f49be51d389c808 (patch)
tree6651cbd4cc72adeaf5cfdb4a8a520ec03ce2a39f
parentf7d760cb94ffef99b596d167fc517284e5a6a757 (diff)
parenta330d967b5f2ad8f3dfcac62bc2cc8e9b00cdcba (diff)
downloadNim-5de728a2df580c6c6b201ea78f49be51d389c808.tar.gz
Merge branch 'devel' of github.com:nim-lang/Nim into devel
-rw-r--r--doc/manual/procs.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual/procs.txt b/doc/manual/procs.txt
index 9b08235c5..5f4c9f2fa 100644
--- a/doc/manual/procs.txt
+++ b/doc/manual/procs.txt
@@ -2,7 +2,7 @@ Procedures
 ==========
 
 What most programming languages call `methods`:idx: or `functions`:idx: are
-called `procedures`:idx: in Nim (which is the correct terminology). A procedure
+called `procedures`:idx: in Nim. A procedure
 declaration consists of an identifier, zero or more formal parameters, a return
 value type and a block of code. Formal parameters are declared as a list of
 identifiers separated by either comma or semicolon. A parameter is given a type