@@ -75,7 +75,7 @@ def start(self) -> None:
7575 Each span represents a single operation. The span's start time is the
7676 wall time at which the operation started.
7777
78- Only the first call to `` start` ` should modify the span, and
78+ Only the first call to `start` should modify the span, and
7979 implementations are free to ignore or raise on further calls.
8080 """
8181
@@ -84,7 +84,7 @@ def end(self) -> None:
8484
8585 The span's end time is the wall time at which the operation finished.
8686
87- Only the first call to `` end` ` should modify the span, and
87+ Only the first call to `end` should modify the span, and
8888 implementations are free to ignore or raise on further calls.
8989 """
9090
@@ -153,9 +153,8 @@ def start_span(self,
153153 this tracer's context.
154154
155155 By default the current span will be used as parent, but an explicit
156- parent can also be specified, either a ``Span`` or a ``SpanContext``.
157- If the specified value is ``None``, the created span will be a root
158- span.
156+ parent can also be specified, either a `Span` or a `SpanContext`. If
157+ the specified value is `None`, the created span will be a root span.
159158
160159 On exiting the context manager stop the span and set its parent as the
161160 current span.
0 commit comments