Skip to content

Commit 011e228

Browse files
committed
docs: fix a few simple typos
There are small typos in: - CONTRIBUTING.md - beaver/utils.py Fixes: - Should read `corresponding` rather than `corrosponding`. - Should read `traceback` rather than `trackback`. - Should read `stacktrace` rather than `stracktrace`. - Should read `complete` rather than `complet`. Closes #471
1 parent 6d8aad3 commit 011e228

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ included in the project:
118118
[interactive rebase](https://help.github.com/articles/about-git-rebase/)
119119
feature to tidy up your commits before making them public.
120120
- Test cases should accompany any change in functionality to the code-base
121-
- Any change to end-user functionality should include corrosponding documentation
121+
- Any change to end-user functionality should include corresponding documentation
122122

123123
5. Locally merge (or rebase) the upstream development branch into your topic branch:
124124

beaver/utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,16 +180,16 @@ def _replace_all(path, replacements):
180180
def multiline_merge(lines, current_event, re_after, re_before):
181181
""" Merge multi-line events based.
182182
183-
Some event (like Python trackback or Java stracktrace) spawn
183+
Some event (like Python traceback or Java stacktrace) spawn
184184
on multiple line. This method will merge them using two
185185
regular expression: regex_after and regex_before.
186186
187187
If a line match re_after, it will be merged with next line.
188188
189189
If a line match re_before, it will be merged with previous line.
190190
191-
This function return a list of complet event. Note that because
192-
we don't know if an event is complet before another new event
191+
This function return a list of complete event. Note that because
192+
we don't know if an event is complete before another new event
193193
start, the last event will not be returned but stored in
194194
current_event. You should pass the same current_event to
195195
successive call to multiline_merge. current_event is a list

0 commit comments

Comments
 (0)