Skip to content

Commit c6c0bb1

Browse files
authored
Update README.md - typo fix (#12376)
1 parent b184587 commit c6c0bb1

File tree

1 file changed

+2
-2
lines changed
  • instrumentation/aws-sdk/aws-sdk-2.2/library

1 file changed

+2
-2
lines changed

instrumentation/aws-sdk/aws-sdk-2.2/library/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ To instrument all AWS SDK clients include the `opentelemetry-aws-sdk-2.2-autocon
99
To register instrumentation only on a specific SDK client, register the interceptor when creating it.
1010

1111
```java
12-
AwsSdkTelemetry telemetrty = AwsSdkTelemetry.create(openTelemetry).build();
12+
AwsSdkTelemetry telemetry = AwsSdkTelemetry.create(openTelemetry).build();
1313
DynamoDbClient client = DynamoDbClient.builder()
1414
.overrideConfiguration(ClientOverrideConfiguration.builder()
15-
.addExecutionInterceptor(telemetrty.newExecutionInterceptor()))
15+
.addExecutionInterceptor(telemetry.newExecutionInterceptor()))
1616
.build())
1717
.build();
1818
```

0 commit comments

Comments
 (0)