From 0708e6cdfb2d816d26d16b73ab6d558acfdb8ed2 Mon Sep 17 00:00:00 2001 From: chao chang Date: Thu, 20 Dec 2018 21:48:53 +0900 Subject: [PATCH] Corrects the span number description in the sample (#1171) --- docs/src/main/asciidoc/intro.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/intro.adoc b/docs/src/main/asciidoc/intro.adoc index 86b5efef9..9d2feaa3b 100644 --- a/docs/src/main/asciidoc/intro.adoc +++ b/docs/src/main/asciidoc/intro.adoc @@ -76,7 +76,7 @@ That means that, if there were two spans sent to Zipkin with Server Received and Why is there a difference between the seven and four spans in this case? -* Two spans come from the `http:/start` span. It has the Server Received (`sr`) and Server Sent (`ss`) annotations. +* One span comes from the `http:/start` span. It has the Server Received (`sr`) and Server Sent (`ss`) annotations. * Two spans come from the RPC call from `service1` to `service2` to the `http:/foo` endpoint. The Client Sent (`cs`) and Client Received (`cr`) events took place on the `service1` side. Server Received (`sr`) and Server Sent (`ss`) events took place on the `service2` side.