From c5008719e158f96da88dbf52d32ba8bfd4255d9d Mon Sep 17 00:00:00 2001 From: Guillaume Polaert Date: Wed, 24 May 2017 15:13:15 +0200 Subject: [PATCH] typo --- dd-trace/README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/dd-trace/README.md b/dd-trace/README.md index fc8bc15c27..fea1c8e44c 100644 --- a/dd-trace/README.md +++ b/dd-trace/README.md @@ -115,15 +115,15 @@ You can start as shown below, here is an example how to use both of them to inst ```java class InstrumentedClass { - - @Trace - void methodAnnoted() { - // The annotation will do the same thing as the manual instrumentation below - //Do some thing here ... - Thread.sleep(1_000); - } - - void methodSDK() { + + @Trace + void methodAnnoted() { + // The annotation will do the same thing as the manual instrumentation below + //Do some thing here ... + Thread.sleep(1_000); + } + + void methodSDK() { // Retrieve the tracer using the resolver provided // Make sure you have : // 1. added the agent to the jvm (-javaagent;/path/to/agent.jar) @@ -137,7 +137,7 @@ class InstrumentedClass { // Close the span, the trace will automatically reported to the writer configured span.close(); - } + } } ```