aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTeddy Wing2018-11-03 16:21:45 +0100
committerTeddy Wing2018-11-03 16:22:58 +0100
commit34a5f3749e7d60855ff907ffa7f66a323454c526 (patch)
treeb8d2c9b08fd74389292c707697cf24f7cd83835e /src
parentb6d0d0ec238ecd7a5dd77fc87dea602e102d3fde (diff)
downloaddome-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')
-rw-r--r--src/parser.rs2
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,
}
);
}