Skip to content

Commit d2588a8

Browse files
fxfactorialtmcw
authored andcommitted
Trivial missing comma in README example code
1 parent 05b7612 commit d2588a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Response ret = makeRequest();
4646
To see which type the `Response` holds you pattern match on the variant unwrapping the underlying value:
4747

4848
```c++
49-
ret.match([] (Result r) { print(r.object); }
49+
ret.match([] (Result r) { print(r.object); },
5050
[] (Error e) { print(e.message); });
5151
```
5252

0 commit comments

Comments
 (0)