We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 111a228 commit 4571fa7Copy full SHA for 4571fa7
1 file changed
REFERENCE.md
@@ -52,7 +52,7 @@ Predicate Pattern corresponds to `(? expr)`.
52
53
```C++
54
match(value)(
55
- pattern | meet([](auto &&v { return v >= 0; })) = value,
+ pattern | meet([](auto &&v) { return v >= 0; })) = value,
56
pattern | _ = 0
57
)
58
```
0 commit comments