mirror of
https://github.com/erg-lang/erg.git
synced 2025-10-02 21:44:34 +00:00
docs: fix redundant print!
in doc.
This commit is contained in:
parent
a07ab4637e
commit
103197e1eb
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ print! f x # OK, interpreted as `print!(f(x))`
|
|||
print!(f(x, y)) # OK
|
||||
print! f(x, y) # OK
|
||||
print! f(x, g y) # OK
|
||||
print! f x, y # NG, can be taken to mean either `print!(f(x), y)` or `print!(f(x, y))` print!
|
||||
print! f x, y # NG, can be taken to mean either `print!(f(x), y)` or `print!(f(x, y))`
|
||||
print!(f x, y) # NG, can be taken to mean either `print!(f(x), y)` or `print!(f(x, y))`
|
||||
print! f(x, g y, z) # NG, can be taken to mean either `print!(x, g(y), z)` or `print!(x, g(y, z))`
|
||||
```
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue