Skip to content

Commit

Permalink
fix the documentation compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
Geal committed Nov 13, 2016
1 parent 22faaed commit d87e80f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/error_management.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ fn main() {
Result:

```ignore
Error(Position(0, [101, 102, 103, 104])) at l.5 by ' tag ! ( "abcd" ) '
Error(Position(0, [101, 102, 103, 104])) at l.5 by " tag ! ( "abcd" ) "
```

The result sent by `dbg_dmp!` is slightly different:
Expand All @@ -47,7 +47,7 @@ fn main() {
It will print, along with the result and the parser, a hexdump of the input buffer passed to the parser.

```ignore
Error(Position(0, [101, 102, 103, 104, 105, 106, 107, 108])) at l.5 by ' tag ! ( "abcd" ) '
Error(Position(0, [101, 102, 103, 104, 105, 106, 107, 108])) at l.5 by " tag ! ( "abcd" ) "
00000000 65 66 67 68 69 6a 6b 6c efghijkl
```

Expand Down

0 comments on commit d87e80f

Please sign in to comment.