diff options
author | hlaaftana <10591326+hlaaftana@users.noreply.github.com> | 2020-02-24 11:57:15 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-24 09:57:15 +0100 |
commit | 84e78b4ffc005de7a76ec7d05bdfd0caf56a79b1 (patch) | |
tree | 7649a6f743e179f52cd9a929536f163b4f4bbaf7 | |
parent | 3e8858d6947b0607b82bbe3ed0a82053280e530f (diff) | |
download | Nim-84e78b4ffc005de7a76ec7d05bdfd0caf56a79b1.tar.gz |
Minor doc change in macros, future -> sugar (#13475) [ci skip]
-rw-r--r-- | lib/core/macros.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/core/macros.nim b/lib/core/macros.nim index f97cd73ad..31e133090 100644 --- a/lib/core/macros.nim +++ b/lib/core/macros.nim @@ -1471,7 +1471,7 @@ macro expandMacros*(body: typed): untyped = ## For instance, ## ## .. code-block:: nim - ## import future, macros + ## import sugar, macros ## ## let ## x = 10 |