You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2022/07/26 04:05:12 UTC

[skywalking] branch master updated: Fix typo in concepts and designs doc (#9385)

This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking.git


The following commit(s) were added to refs/heads/master by this push:
     new 67bb7c4083 Fix typo in concepts and designs doc (#9385)
67bb7c4083 is described below

commit 67bb7c408358eee1f137c6da62b03abeb1849228
Author: xiao ru xing <xi...@gmail.com>
AuthorDate: Tue Jul 26 12:05:05 2022 +0800

    Fix typo in concepts and designs doc (#9385)
    
    Signed-off-by: xiaorx <xi...@asiainfo.com>
---
 docs/en/concepts-and-designs/lal.md                | 4 ++--
 docs/en/concepts-and-designs/probe-introduction.md | 2 +-
 docs/en/concepts-and-designs/sdk-profiling.md      | 2 +-
 docs/en/guides/README.md                           | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/docs/en/concepts-and-designs/lal.md b/docs/en/concepts-and-designs/lal.md
index 4f49a6eb72..1d85776a6f 100644
--- a/docs/en/concepts-and-designs/lal.md
+++ b/docs/en/concepts-and-designs/lal.md
@@ -107,7 +107,7 @@ filter {
 
 - `grok` (TODO)
 
-We're aware of certains performance issues in the grok Java library, and so we're currently conducting investigations and benchmarking. Contributions are
+We're aware of certain performance issues in the grok Java library, and so we're currently conducting investigations and benchmarking. Contributions are
 welcome.
 
 ### Extractor
@@ -359,7 +359,7 @@ filter {
         sampler {
             // ... sampler configs
         }
-        if (parserd.level == "ERROR" || parsed.userId == "TestingUserId") { // sample error logs or testing users' logs (userId == "TestingUserId") even if the sampling strategy is configured
+        if (parsed.level == "ERROR" || parsed.userId == "TestingUserId") { // sample error logs or testing users' logs (userId == "TestingUserId") even if the sampling strategy is configured
             enforcer {
             }
         }
diff --git a/docs/en/concepts-and-designs/probe-introduction.md b/docs/en/concepts-and-designs/probe-introduction.md
index 946e8a5be1..04b6736052 100644
--- a/docs/en/concepts-and-designs/probe-introduction.md
+++ b/docs/en/concepts-and-designs/probe-introduction.md
@@ -21,7 +21,7 @@ On a high level, there are four typical categories in all SkyWalking probes.
   span data. See
   [Receiver for Zipkin traces](../setup/backend/zipkin-trace.md) for more information.
 
-- **eBPF agent**. The eBPF agent collects metrics and proifiling the target service powered by the eBPF technology of Linux kernel.
+- **eBPF agent**. The eBPF agent collects metrics and profiling the target service powered by the eBPF technology of Linux kernel.
 
 You don't need to use **Language based native agent** and **Service Mesh probe** at the same time, since they both serve
 to collect metrics data. Otherwise, your system will suffer twice the payload, and the analytic numbers will be doubled.
diff --git a/docs/en/concepts-and-designs/sdk-profiling.md b/docs/en/concepts-and-designs/sdk-profiling.md
index 81c72c37a6..bd7e6e963f 100644
--- a/docs/en/concepts-and-designs/sdk-profiling.md
+++ b/docs/en/concepts-and-designs/sdk-profiling.md
@@ -87,7 +87,7 @@ threadPool.submit(new Task2(countDownLatch));
  
 try {
    countDownLatch.await(500, TimeUnit.MILLISECONDS);
-} catch (InterruptedExceptione) {
+} catch (InterruptedException) {
 }
 ```
 
diff --git a/docs/en/guides/README.md b/docs/en/guides/README.md
index 4aacb9a674..092241e921 100755
--- a/docs/en/guides/README.md
+++ b/docs/en/guides/README.md
@@ -65,7 +65,7 @@ Since version 6.3.0, we have introduced more automatic tests to perform software
 
 The E2E test involves some/all of the OAP server, storage, coordinator, webapp, and the instrumented services, all of which are orchestrated by `docker-compose` or `KinD`.
 Since version 8.9.0, we immigrate to e2e-v2 which leverage [skywalking-infra-e2e](https://github.com/apache/skywalking-infra-e2e) and [skywalking-cli](https://github.com/apache/skywalking-cli) to do the whole e2e process.
-`skywalking-infra-e2e` is used to control the e2e process and `skywalking-cli` is used to interact with the OAP such as request and get response metris from OAP.
+`skywalking-infra-e2e` is used to control the e2e process and `skywalking-cli` is used to interact with the OAP such as request and get response metrics from OAP.
 
 #### Writing E2E Cases