Skip to content

Commit

Permalink
Improve phrasing of additional process text
Browse files Browse the repository at this point in the history
Fix #152
  • Loading branch information
FrostyX committed Sep 11, 2020
1 parent a0eb36d commit 1291f56
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/source/user-guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Standard way to use tracer is just running the ``sudo tracer`` command. I am wor
dolphin
gvim

Additionally to those process above, there are:
Additionally, there are:
- 6 processes requiring restarting your session (i.e. Logging out & Logging in again)
- 2 processes requiring reboot

Expand Down
2 changes: 1 addition & 1 deletion tests/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def test_default_not_all(self):
" bar\n"
" foo\n"
"\n"
"Additionally to those process above, there are:\n"
"Additionally, there are:\n"
" - 2 processes requiring restart of your session (i.e. Logging out & Logging in again)\n"
" - 1 processes requiring reboot\n"
))
Expand Down
2 changes: 1 addition & 1 deletion tracer/views/note_for_hidden.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def render(self):
if self.args.session_count + self.args.static_count == self.args.total_count:
self.print(_("There are:"))
else:
self.print(_("Additionally to those process above, there are:"))
self.print(_("Additionally, there are:"))

if self.args.session_count > 0:
self.print(" - " + \
Expand Down

0 comments on commit 1291f56

Please sign in to comment.