diff --git a/pyvows/decorators.py b/pyvows/decorators.py index 3661fe0..08fcf6e 100644 --- a/pyvows/decorators.py +++ b/pyvows/decorators.py @@ -61,7 +61,7 @@ def wrapper(*args, **kw): def skip_if(condition, reason): '''Topic or vow or context decorator. Causes a topic or vow to be skipped if `condition` is True - This is equivilent to `if condition: raise SkipTest(reason)` + This is equivalent to `if condition: raise SkipTest(reason)` ''' from pyvows.core import Vows diff --git a/pyvows/reporting/test.py b/pyvows/reporting/test.py index 6e63172..92a44f8 100644 --- a/pyvows/reporting/test.py +++ b/pyvows/reporting/test.py @@ -133,7 +133,7 @@ def _print_traceback(): self.indent += 2 ### NOTE: - ### Commented out try/except; potential debugging hinderance + ### Commented out try/except; potential debugging hindrance #try: diff --git a/pyvows/result.py b/pyvows/result.py index 06ec3c4..39abf1a 100644 --- a/pyvows/result.py +++ b/pyvows/result.py @@ -27,7 +27,7 @@ def __init__(self): self.elapsed_time = 0.0 def _count_contexts(self, contexts=None, count_func=lambda context: 1): - '''Used interally for class properties + '''Used internally for class properties `total_test_count`, `successful_tests`, and `errored_tests`. '''