summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2018-09-27 22:34:49 +0200
committerAraq <rumpf_a@web.de>2018-09-27 22:34:49 +0200
commita0ec1c1212dfd8df41d3c4fb9237cd9aba7a9d3d (patch)
tree11e0db9e3697db1e9f2ec8f0cf27559ce3a788b1 /doc
parent4046ee818f200611d62447cfae239b15eec1682e (diff)
downloadNim-a0ec1c1212dfd8df41d3c4fb9237cd9aba7a9d3d.tar.gz
manual: fixes the wording of case statement macros
Diffstat (limited to 'doc')
-rw-r--r--doc/manual.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/manual.rst b/doc/manual.rst
index 6afc10473..279c28de7 100644
--- a/doc/manual.rst
+++ b/doc/manual.rst
@@ -5592,12 +5592,12 @@ via ``{.experimental: "caseStmtMacros".}``.
 
 ``match`` macros are subject to overload resolution. First the
 ``case``'s selector expression is used to determine which ``match``
-macro to call. To this macro is then the complete ``case`` statement
-body is passed and the macro is evaluated.
+macro to call. To this macro is then passed the complete ``case``
+statement body and the macro is evaluated.
 
 In other words, the macro needs to transform the full ``case`` statement
 but only the statement's selector expression is used to determine which
-``macro`` to call.
+macro to call.
 
 
 Special Types