Skip to content

Commit 0e95139

Browse files
raineflashcode
authored andcommitted
grep.py 0.7.6: fix typo: insensible -> insensitive
1 parent b648b3f commit 0e95139

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

python/grep.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,9 @@
6666
#
6767
# History:
6868
#
69+
# 2015-11-26
70+
# version 0.7.6: fix a typo
71+
#
6972
# 2015-01-31, Nicd-
7073
# version 0.7.5:
7174
# '~' is now expaned to the home directory in the log file path so
@@ -200,7 +203,7 @@
200203

201204
SCRIPT_NAME = "grep"
202205
SCRIPT_AUTHOR = "Elián Hanisch <[email protected]>"
203-
SCRIPT_VERSION = "0.7.5"
206+
SCRIPT_VERSION = "0.7.6"
204207
SCRIPT_LICENSE = "GPL3"
205208
SCRIPT_DESC = "Search in buffers and logs"
206209
SCRIPT_COMMAND = "grep"
@@ -1639,7 +1642,7 @@ def delete_bytecode():
16391642
If used with 'log <file>' search in all logs that matches <file>.
16401643
-b --buffer: Search only in buffers, not in file logs.
16411644
-c --count: Just count the number of matched lines instead of showing them.
1642-
-m --matchcase: Don't do case insensible search.
1645+
-m --matchcase: Don't do case insensitive search.
16431646
-H --hilight: Colour exact matches in output buffer.
16441647
-o --only-match: Print only the matching part of the line (unique matches).
16451648
-v -i --invert: Print lines that don't match the regular expression.

0 commit comments

Comments
 (0)