Fix typo in docs (#1157)

* Fix typo

* Revert the change applied to root README

* Fix the docs module

* Revert a change of root README
This commit is contained in:
Akihito Nakano
2018-12-15 21:57:03 +09:00
committed by Marcin Grzejszczak
parent bf71477912
commit d4c4a88716
2 changed files with 1 additions and 2 deletions

View File

@@ -220,7 +220,6 @@ The following example shows setting baggage on a span:
[source,java]
----
include::{github-raw}/spring-cloud-sleuth-core/src/test/java/org/springframework/cloud/sleuth/instrument/multiple/MultipleHopsIntegrationTests.java[tags=baggage,indent=0]
}
----
===== Baggage versus Span Tags

View File

@@ -461,7 +461,7 @@ IMPORTANT: Remember that adding entries to MDC can drastically decrease the perf
The `TraceContext.Extractor<C>` reads trace identifiers and sampling status from an incoming request or message.
The carrier is usually a request object or headers.
This utility is used in standard instrumentation (such as `HttpServerHandler``) but can also be used for custom RPC or messaging code.
This utility is used in standard instrumentation (such as `HttpServerHandler`) but can also be used for custom RPC or messaging code.
`TraceContextOrSamplingFlags` is usually used only with `Tracer.nextSpan(extracted)`, unless you are
sharing span IDs between a client and a server.