From 70b825ce43f6dabf12eb9411ca74c9a660b52e76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BA=B7=E6=99=BA=E5=86=AC?= Date: Sun, 1 Sep 2019 08:35:32 +0800 Subject: [PATCH] fix typo (#3388) --- .../apm/agent/core/context/ids/DistributedTraceId.java | 2 +- .../skywalking/apm/agent/core/context/trace/ExitSpan.java | 2 +- .../receiver-proto/src/main/proto/google/api/http.proto | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/context/ids/DistributedTraceId.java b/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/context/ids/DistributedTraceId.java index b60ad3306d..779b6e6908 100644 --- a/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/context/ids/DistributedTraceId.java +++ b/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/context/ids/DistributedTraceId.java @@ -24,7 +24,7 @@ import org.apache.skywalking.apm.network.language.agent.*; /** * The DistributedTraceId presents a distributed call chain. *

- * This call chain has an unique (service) entrance, + * This call chain has a unique (service) entrance, *

* such as: Service : http://www.skywalking.com/cust/query, all the remote, called behind this service, rest remote, * db executions, are using the same DistributedTraceId even in different JVM. diff --git a/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/context/trace/ExitSpan.java b/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/context/trace/ExitSpan.java index 29a5aafe77..774acc4ab5 100644 --- a/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/context/trace/ExitSpan.java +++ b/apm-sniffer/apm-agent-core/src/main/java/org/apache/skywalking/apm/agent/core/context/trace/ExitSpan.java @@ -23,7 +23,7 @@ import org.apache.skywalking.apm.agent.core.context.tag.AbstractTag; import org.apache.skywalking.apm.network.trace.component.Component; /** - * The ExitSpan represents a service consumer point, such as Feign, Okhttp client for a Http service. + * The ExitSpan represents a service consumer point, such as Feign, Okhttp client for an Http service. * * It is an exit point or a leaf span(our old name) of trace tree. In a single rpc call, because of a combination of * discovery libs, there maybe contain multi-layer exit point: diff --git a/oap-server/server-receiver-plugin/receiver-proto/src/main/proto/google/api/http.proto b/oap-server/server-receiver-plugin/receiver-proto/src/main/proto/google/api/http.proto index 6f92729b87..a2286bce34 100755 --- a/oap-server/server-receiver-plugin/receiver-proto/src/main/proto/google/api/http.proto +++ b/oap-server/server-receiver-plugin/receiver-proto/src/main/proto/google/api/http.proto @@ -110,7 +110,7 @@ message Http { // } // // -// This enables a HTTP JSON to RPC mapping as below: +// This enables an HTTP JSON to RPC mapping as below: // // HTTP | RPC // -----|----- -- GitLab