diff options
author | ringabout <43030857+ringabout@users.noreply.github.com> | 2022-08-23 19:17:00 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-23 19:17:00 +0800 |
commit | d8e5c5c5a6e3ed0b452c9940010d2c436bdb1149 (patch) | |
tree | a90c5e9a5152168bbd853bb150b7a84cdd7c899e /doc | |
parent | 25c6491b657997d186f08c48be352ae98d9a3aac (diff) | |
download | Nim-d8e5c5c5a6e3ed0b452c9940010d2c436bdb1149.tar.gz |
fixes manual regression (#20259)
ref https://github.com/nim-lang/Nim/pull/20080
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/manual.md b/doc/manual.md index 44f6ff7cb..0a7231d23 100644 --- a/doc/manual.md +++ b/doc/manual.md @@ -790,9 +790,11 @@ of a call or whether it is parsed as a tuple constructor: ```nim echo(1, 2) # pass 1 and 2 to echo + ``` ```nim echo (1, 2) # pass the tuple (1, 2) to echo + ``` Dot-like operators ------------------ |