Skip to content

Commit 7b70994

Browse files
committed
Fix typos in logging docs
1 parent d62c43e commit 7b70994

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/logging.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ For example:
4343
1 failed in 0.01 seconds
4444
4545
46-
**Disabling Loggin Capture**
46+
**Disabling Logging Capture**
4747

4848
Qt logging capture can be disabled altogether by passing the ``--no-qt-log``
4949
to the command line, which will fallback to the default Qt bahavior of printing
@@ -88,12 +88,12 @@ context manager, or with the ``pytest.mark.no_qt_log`` mark:
8888
8989
def test_foo(qtlog):
9090
with qtlog.disabled():
91-
# logging is disable within the context manager
91+
# logging is disabled within the context manager
9292
do_something()
9393
9494
@pytest.mark.no_qt_log
9595
def test_bar():
96-
# logging disabled for the entire test
96+
# logging is disabled for the entire test
9797
do_something()
9898
9999

0 commit comments

Comments
 (0)