diff options
| author | Teddy Wing | 2018-11-03 16:21:45 +0100 |
|---|---|---|
| committer | Teddy Wing | 2018-11-03 16:22:58 +0100 |
| commit | 34a5f3749e7d60855ff907ffa7f66a323454c526 (patch) | |
| tree | b8d2c9b08fd74389292c707697cf24f7cd83835e /src/parser.rs | |
| parent | b6d0d0ec238ecd7a5dd77fc87dea602e102d3fde (diff) | |
| download | dome-key-map-34a5f3749e7d60855ff907ffa7f66a323454c526.tar.bz2 | |
map_group_shows_error_in_middle_of_line: Fix column number
I wrote the wrong column number on which the error should occur.
Diffstat (limited to 'src/parser.rs')
| -rw-r--r-- | src/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.rs b/src/parser.rs index fa763ed..85a7ed2 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -1553,7 +1553,7 @@ map <not-a-button> <Nop> result.unwrap_err().position, SourcePosition { line: 2, - column: 5, + column: 6, } ); } |
