From 2aa7ffbcbfff24edb238ff5bcbe1478cb99e2f1e Mon Sep 17 00:00:00 2001 From: Doug Roper Date: Tue, 2 Oct 2018 21:51:04 -0400 Subject: [PATCH] Fix a couple typos. --- dd-trace-ot/docs/opentracing-api.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dd-trace-ot/docs/opentracing-api.md b/dd-trace-ot/docs/opentracing-api.md index be7a6ac098..1bcb8c4d2e 100644 --- a/dd-trace-ot/docs/opentracing-api.md +++ b/dd-trace-ot/docs/opentracing-api.md @@ -1,7 +1,7 @@ # OpenTracing API -The Opentraction group offers an API to instrument your code. +The OpenTracing group offers an API to instrument your code. This document is a kind of a "quick start" for the official specification: https://github.com/opentracing/specification There are several concepts exposed by the OpenTracing API: @@ -67,7 +67,7 @@ Sometimes you need to create a span without promoting it as the active. If you w Typically, span creations are made in the beginning of the methods you want to trace. And of course, you need to finish/close the span in order to get the operation duration. -This is achieving using the `finish` method. +This is achieved using the `finish` method. ```java // Finishing the tracing operation