Skip to content

Commit

Permalink
Trivial missing comma in README example code
Browse files Browse the repository at this point in the history
  • Loading branch information
fxfactorial authored and tmcw committed Jan 8, 2017
1 parent 05b7612 commit d2588a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Response ret = makeRequest();
To see which type the `Response` holds you pattern match on the variant unwrapping the underlying value:

```c++
ret.match([] (Result r) { print(r.object); }
ret.match([] (Result r) { print(r.object); },
[] (Error e) { print(e.message); });
```
Expand Down

0 comments on commit d2588a8

Please sign in to comment.