Skip to content

Commit 4571fa7

Browse files
committed
add missing parenthesis
1 parent 111a228 commit 4571fa7

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)