From 36d68d39a0b38eb647106bf9fe3a558947c35bba Mon Sep 17 00:00:00 2001 From: Rachel Yang Date: Tue, 27 Aug 2024 10:21:20 -0400 Subject: [PATCH] spelling errors --- ddtrace/internal/opentelemetry/context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ddtrace/internal/opentelemetry/context.py b/ddtrace/internal/opentelemetry/context.py index b0adddb2db3..056aaf2d007 100644 --- a/ddtrace/internal/opentelemetry/context.py +++ b/ddtrace/internal/opentelemetry/context.py @@ -50,7 +50,7 @@ def attach(self, otel_context): if ddcontext and otel_baggage: for key, value in otel_baggage.items(): # value is from opentelemetry and can be any object. - # make sure this object is compatiable w/ datadog internals + # make sure this object is compatible w/ datadog internals ddcontext._baggage[key] = value # potentially convert to json # A return value with the type `object` is required by the otel api to remove/deactivate spans.