Skip to content

Commit 3873729

Browse files
authored
Merge pull request #33 from mrgum/patch-1
Fix missing S in Slightly formatting and capitalization in README.md
2 parents 6ea604f + 3cf6575 commit 3873729

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -169,12 +169,12 @@ logging.getLogger('command_runner').setLevel(logging.CRITICAL)
169169
- A thread is spawned in order to check stop conditions and kill process if needed
170170
- A main loop waits for the process to finish, then uses proc.communicate() to get it's output
171171
- Pros:
172-
- less CPU usage
173-
- less threads
172+
- Less CPU usage
173+
- Less threads
174174
- Cons:
175-
- cannot read partial output on KeyboardInterrupt or stop_on (still works for partial timeout output)
176-
- cannot use queues or callback functions redirectors
177-
- is 0.1 seconds slower than poller method
175+
- It cannot read partial output on KeyboardInterrupt or stop_on (still works for partial timeout output)
176+
- It cannot use queues or callback functions redirectors
177+
- It is 0.1 seconds slower than poller method
178178

179179

180180
`method='poller'`:
@@ -183,9 +183,9 @@ logging.getLogger('command_runner').setLevel(logging.CRITICAL)
183183
- Pros:
184184
- Reads on the fly, allowing interactive commands (is also used with `live_output=True`)
185185
- Allows stdout/stderr output to be written live to callback functions, queues or files (useful when threaded)
186-
- is 0.1 seconds faster than monitor method, is preferred method for fast batch runnings
186+
- It is 0.1 seconds faster than monitor method and is the preferred method for fast batch runnings
187187
- Cons:
188-
- lightly higher CPU usage
188+
- Slightly higher CPU usage
189189

190190
Example:
191191
```python

0 commit comments

Comments
 (0)