fixes manual regression (#20259)

ref https://github.com/nim-lang/Nim/pull/20080
This commit is contained in:
ringabout
2022-08-23 19:17:00 +08:00
committed by GitHub
parent 25c6491b65
commit d8e5c5c5a6

View File

@@ -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
------------------