Skip to content

Commit 07381a9

Browse files
committed
Remove extraneous parenthesis
1 parent 7971457 commit 07381a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/expressions/call-expr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
> &nbsp;&nbsp; [_Expression_] `(` _CallParams_<sup>?</sup> `)`
66
>
77
> _CallParams_ :
8-
> &nbsp;&nbsp; [_Expression_]&nbsp;( `,` ([_Expression_]) )<sup>\*</sup> `,`<sup>?</sup>
8+
> &nbsp;&nbsp; [_Expression_]&nbsp;( `,` [_Expression_] )<sup>\*</sup> `,`<sup>?</sup>
99
1010
A _call expression_ consists of an expression followed by a parenthesized
1111
expression-list. It invokes a function, providing zero or more input variables.

0 commit comments

Comments
 (0)