Skip to content

Commit 0ba73cc

Browse files
authored
place lambda arguments' closing parenthesis properly (#110)
1 parent 111a228 commit 0ba73cc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

REFERENCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Predicate Pattern corresponds to `(? expr)`.
5252
5353
```C++
5454
match(value)(
55-
pattern | meet([](auto &&v { return v >= 0; })) = value,
55+
pattern | meet([](auto &&v) { return v >= 0; }) = value,
5656
pattern | _ = 0
5757
)
5858
```

0 commit comments

Comments
 (0)