Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 93fa54d

Browse files
Fix typos of “it's” where “its” is meant (open-telemetry#2039)
1 parent 5e0a465 commit 93fa54d

File tree

5 files changed

+5
-5
lines changed
  • opentelemetry-api/src/opentelemetry/trace
  • opentelemetry-instrumentation/src/opentelemetry/instrumentation
  • opentelemetry-sdk/src/opentelemetry/sdk/trace
  • opentelemetry-semantic-conventions/src/opentelemetry/semconv/trace

5 files changed

+5
-5
lines changed

opentelemetry-api/src/opentelemetry/trace/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ def start_as_current_span(
320320
as the current span in this tracer's context.
321321
322322
Exiting the context manager will call the span's end method,
323-
as well as return the current span to it's previous value by
323+
as well as return the current span to its previous value by
324324
returning to the previous context.
325325
326326
Example::

opentelemetry-instrumentation/src/opentelemetry/instrumentation/auto_instrumentation/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def parse_args():
3232
parser = argparse.ArgumentParser(
3333
description="""
3434
opentelemetry-instrument automatically instruments a Python
35-
program and it's dependencies and then runs the program.
35+
program and its dependencies and then runs the program.
3636
"""
3737
)
3838

opentelemetry-instrumentation/src/opentelemetry/instrumentation/propagators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
This module implements experimental propagators to inject trace context
1717
into response carriers. This is useful for server side frameworks that start traces
1818
when server requests and want to share the trace context with the client so the
19-
client can add it's spans to the same trace.
19+
client can add its spans to the same trace.
2020
2121
This is part of an upcoming W3C spec and will eventually make it to the Otel spec.
2222

opentelemetry-sdk/src/opentelemetry/sdk/trace/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ class SpanLimits:
532532
All limit arguments must be either a non-negative integer, ``None`` or ``SpanLimits.UNSET``.
533533
534534
- All limit arguments are optional.
535-
- If a limit argument is not set, the class will try to read it's value from the corresponding
535+
- If a limit argument is not set, the class will try to read its value from the corresponding
536536
environment variable.
537537
- If the environment variable is not set, the default value for the limit is used.
538538

opentelemetry-semantic-conventions/src/opentelemetry/semconv/trace/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ class SpanAttributes:
608608
MESSAGING_KAFKA_MESSAGE_KEY = "messaging.kafka.message_key"
609609
"""
610610
Message keys in Kafka are used for grouping alike messages to ensure they're processed on the same partition. They differ from `messaging.message_id` in that they're not unique. If the key is `null`, the attribute MUST NOT be set.
611-
Note: If the key type is not string, it's string representation has to be supplied for the attribute. If the key has no unambiguous, canonical string form, don't include its value.
611+
Note: If the key type is not string, its string representation has to be supplied for the attribute. If the key has no unambiguous, canonical string form, don't include its value.
612612
"""
613613

614614
MESSAGING_KAFKA_CONSUMER_GROUP = "messaging.kafka.consumer_group"

0 commit comments

Comments
 (0)