aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2017-04-02 09:46:54 +0200
committerMarc André Tanner <mat@brain-dump.org>2017-04-02 09:46:54 +0200
commit9ceac7ea426bf4aceb6aa260d10b83e3c7fe16d3 (patch)
tree3904e6552d495efe74f2c4c593fd1debf2bbe049 /main.c
parent474365647cc7f65da26301b312e5fdee527c56bf (diff)
downloadvis-9ceac7ea426bf4aceb6aa260d10b83e3c7fe16d3.tar.gz
vis-9ceac7ea426bf4aceb6aa260d10b83e3c7fe16d3.tar.xz
Fix Debian package lintian warnings
https://mentors.debian.net/package/vis
Diffstat (limited to 'main.c')
-rw-r--r--main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/main.c b/main.c
index 4bdb05c..c8fefaa 100644
--- a/main.c
+++ b/main.c
@@ -539,12 +539,12 @@ static const KeyAction vis_action[] = {
},
[VIS_ACTION_CURSOR_SEARCH_WORD_FORWARD] = {
"vis-motion-search-word-forward",
- VIS_HELP("Move cursor to next occurence of the word under cursor")
+ VIS_HELP("Move cursor to next occurrence of the word under cursor")
movement, { .i = VIS_MOVE_SEARCH_WORD_FORWARD }
},
[VIS_ACTION_CURSOR_SEARCH_WORD_BACKWARD] = {
"vis-motion-search-word-backward",
- VIS_HELP("Move cursor to previous occurence of the word under cursor")
+ VIS_HELP("Move cursor to previous occurrence of the word under cursor")
movement, { .i = VIS_MOVE_SEARCH_WORD_BACKWARD }
},
[VIS_ACTION_WINDOW_PAGE_UP] = {
@@ -779,7 +779,7 @@ static const KeyAction vis_action[] = {
},
[VIS_ACTION_OPERATOR_FILTER_FMT] = {
"vis-operator-filter-format",
- VIS_HELP("Formating operator, filter range through fmt(1)")
+ VIS_HELP("Formatting operator, filter range through fmt(1)")
operator_filter, { .s = "|fmt" }
},
[VIS_ACTION_COUNT] = {