diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/parser.rs | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/parser.rs b/src/parser.rs index ea1bcc5..3866a44 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -1137,7 +1137,7 @@ map <down> fails";          );          assert_eq!(result, Err(easy::Errors { -            position: ::combine::stream::state::SourcePosition { +            position: SourcePosition {                  line: 2,                  column: 17,              }, @@ -1374,7 +1374,7 @@ cmd <play> /usr/bin/say hello          let result = map_group().easy_parse(State::new(text)).map(|t| t.0);          assert_eq!(result, Err(easy::Errors { -            position: ::combine::stream::state::SourcePosition { +            position: SourcePosition {                  line: 1,                  column: 1,              }, | 
