From 9e42256f96554b30715634ee299d500f6203c9ed Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 2 Jul 2022 09:08:07 +1000 Subject: [PATCH] docs: fix simple typo, corotuines -> coroutines There is a small typo in opentracing/scope_managers/tornado.py. Should read `coroutines` rather than `corotuines`. --- opentracing/scope_managers/tornado.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentracing/scope_managers/tornado.py b/opentracing/scope_managers/tornado.py index 3655a5c..72bd2df 100644 --- a/opentracing/scope_managers/tornado.py +++ b/opentracing/scope_managers/tornado.py @@ -95,7 +95,7 @@ def activate(self, span, finish_on_close): If no :func:`tracer_stack_context()` is detected, thread-local storage will be used to store the :class:`~opentracing.Scope`. Observe that in this case the active :class:`~opentracing.Span` - will not be automatically propagated to the child corotuines. + will not be automatically propagated to the child coroutines. :return: a :class:`~opentracing.Scope` instance to control the end of the active period for the :class:`~opentracing.Span`.