From: gfyoung Date: Thu, 28 Dec 2017 08:28:25 +0000 (-0800) Subject: Fix minor spelling error in test_sys_settrace.py. (#5025) X-Git-Tag: v3.7.0a4~47 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=531dd7e27e6bbb89d66e507399bf3f9215bbb3e4;p=python Fix minor spelling error in test_sys_settrace.py. (#5025) --- diff --git a/Lib/test/test_sys_settrace.py b/Lib/test/test_sys_settrace.py index 4d88ae5fc2..b4b578cc9d 100644 --- a/Lib/test/test_sys_settrace.py +++ b/Lib/test/test_sys_settrace.py @@ -8,7 +8,7 @@ import gc from functools import wraps class tracecontext: - """Contex manager that traces its enter and exit.""" + """Context manager that traces its enter and exit.""" def __init__(self, output, value): self.output = output self.value = value