Skip to content

Commit 835f1b8

Browse files
tkfc42f
authored andcommitted
Fix dot call in AST docs (#33247)
1 parent 879fef4 commit 835f1b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/src/devdocs/ast.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ call. Finally, chains of comparisons have their own special expression structure
5959
| `a==b` | `(call == a b)` |
6060
| `1<i<=n` | `(comparison 1 < i <= n)` |
6161
| `a.b` | `(. a (quote b))` |
62-
| `a.(b)` | `(. a b)` |
62+
| `a.(b)` | `(. a (tuple b))` |
6363

6464
### Bracketed forms
6565

0 commit comments

Comments
 (0)