Skip to content

Commit fbec281

Browse files
authored
Fix typo (#1721)
1 parent 88783f9 commit fbec281

File tree

1 file changed

+1
-1
lines changed
  • instrumentation/opentelemetry-instrumentation-boto3sqs/src/opentelemetry/instrumentation/boto3sqs

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ class Boto3SQSInstrumentor(BaseInstrumentor):
101101
class ContextableList(list):
102102
"""
103103
Since the classic way to process SQS messages is using a `for` loop, without a well defined scope like a
104-
callback - we are doing something similar to the instrumentaiton of Kafka-python and instrumenting the
104+
callback - we are doing something similar to the instrumentation of Kafka-python and instrumenting the
105105
`__iter__` functions and the `__getitem__` functions to set the span context of the addressed message. Since
106106
the return value from an `SQS.ReceiveMessage` returns a builtin list, we cannot wrap it and change all of the
107107
calls for `list.__iter__` and `list.__getitem__` - therefore we use ContextableList. It is bound to the

0 commit comments

Comments
 (0)