diff options
author | Ico Doornekamp <ico@pruts.nl> | 2020-06-01 14:02:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-01 14:02:17 +0200 |
commit | 0489e76da768502aa7bddea1cbab3bfa5f6b22a2 (patch) | |
tree | f786c07c49f5e7b71480e70486781d7ecf53fc4b /doc | |
parent | 8710395a0f7b57bab755ea826a82e3ceef85aa52 (diff) | |
download | Nim-0489e76da768502aa7bddea1cbab3bfa5f6b22a2.tar.gz |
manual: removed subjective phrase from 'macros' section (#14536)
Removed phrase "However, this is no real restriction because Nim's syntax is flexible enough anyway." from the manual - I find it very subjective, and I sometimes *do* find myself restricted by Nim's syntax when writing DSLs
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/manual.rst b/doc/manual.rst index f70c484a2..451359dca 100644 --- a/doc/manual.rst +++ b/doc/manual.rst @@ -5305,8 +5305,7 @@ twice: this process iterates. While macros enable advanced compile-time code transformations, they -cannot change Nim's syntax. However, this is no real restriction because -Nim's syntax is flexible enough anyway. +cannot change Nim's syntax. Debug Example ------------- |