Skip to content

Commit 65b77e4

Browse files
committed
Small grammar fix
1 parent d53cd79 commit 65b77e4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

trepan/processor/command/bpython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def run(self, args):
6464

6565
banner_tmpl = """\033[1mIPython trepan3k shell%s\033[0m
6666
67-
Use dbgr(\x1b[3mstring\x1b[0m) to issue non-continuing debugger command.
67+
Use dbgr(\x1b[3mstring\x1b[0m) to issue a non-continuing debugger command.
6868
"""
6969

7070
debug = len(args) > 1 and args[1] == "-d"

trepan/processor/command/ipython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def run(self, args):
6868
cfg = Config()
6969
banner_tmpl = """\033[1mIPython trepan3k shell%s\033[0m
7070
71-
Use Use dbgr(\x1b[3mstring\x1b[0m) to issue non-continuing debugger command.
71+
Use Use dbgr(\x1b[3mstring\x1b[0m) to issue a non-continuing debugger command.
7272
"""
7373

7474
debug = len(args) > 1 and args[1] == "-d"

trepan/processor/command/python.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def run(self, args):
9696

9797
banner_tmpl = """\033[1mIPython trepan3k shell%s\033[0m
9898
99-
Use dbgr(\x1b[3mstring\x1b[0m) to issue non-continuing debugger command.
99+
Use dbgr(\x1b[3mstring\x1b[0m) to issue a non-continuing debugger command.
100100
"""
101101

102102
debug = len(args) > 1 and args[1] == "-d"

0 commit comments

Comments
 (0)