Skip to content

Commit

Permalink
Fix typo (#1078)
Browse files Browse the repository at this point in the history
  • Loading branch information
namsoo2 authored Feb 10, 2020
1 parent 0230e79 commit 3b434dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion instrumentation/kafka-clients/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ kafkaTracing = KafkaTracing.newBuilder(messagingTracing)

To use the producer simply wrap it like this :
```java
Producer<K, V> stringProducer = new KafkaProducer<>(settings);
Producer<K, V> producer = new KafkaProducer<>(settings);
TracingProducer<K, V> tracingProducer = kafkaTracing.producer(producer);
tracingProducer.send(new ProducerRecord<K, V>("my-topic", key, value));
```
Expand Down

0 comments on commit 3b434dc

Please sign in to comment.