You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by mo...@apache.org on 2022/05/05 01:56:08 UTC

[incubator-doris] branch master updated: [docs] Fix some typos in documentation. (#9356)

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

morningman pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-doris.git


The following commit(s) were added to refs/heads/master by this push:
     new ac5f4d6c7e [docs] Fix some typos in documentation. (#9356)
ac5f4d6c7e is described below

commit ac5f4d6c7e767b59f8b4939b583a01853a854d8c
Author: liuzhuang2017 <95...@users.noreply.github.com>
AuthorDate: Thu May 5 09:56:02 2022 +0800

    [docs] Fix some typos in documentation. (#9356)
---
 docs/en/community/how-to-contribute/how-to-contribute.md    | 6 +++---
 docs/en/data-table/index/bloomfilter.md                     | 6 +++---
 docs/zh-CN/community/how-to-contribute/how-to-contribute.md | 6 +++---
 3 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/docs/en/community/how-to-contribute/how-to-contribute.md b/docs/en/community/how-to-contribute/how-to-contribute.md
index e026cf73b7..b0559cac2e 100644
--- a/docs/en/community/how-to-contribute/how-to-contribute.md
+++ b/docs/en/community/how-to-contribute/how-to-contribute.md
@@ -55,9 +55,9 @@ As you can see from [GitHub](https://github.com/apache/incubator-doris), Apache
 | [Backend daemon (BE)](https://github.com/apache/incubator-doris) | Responsible for storing data and executing query fragments | C++|
 | [Broker](https://github.com/apache/incubator-doris) | Read HDFS data to Doris | Java|
 | [Website](https://github.com/apache/incubator-doris-website) | Doris Website | Markdown |
-| [Manager](https://github.com/apache/incubator-doris-website) | Doris Manager | Markdown |
-| [Flink-Connector](https://github.com/apache/incubator-doris-flink-connector) | Doris Flink Connector | Markdown |
-| [Spark-Connector](https://github.com/apache/incubator-doris-spark-connector) | Doris Spark Connector | Markdown |
+| [Manager](https://github.com/apache/incubator-doris-manager) | Doris Manager | Java |
+| [Flink-Connector](https://github.com/apache/incubator-doris-flink-connector) | Doris Flink Connector | Java |
+| [Spark-Connector](https://github.com/apache/incubator-doris-spark-connector) | Doris Spark Connector | Java |
 | Doris Runtime Help Document | Online Help Manual at Doris Runtime | Markdown|
 
 ## Improving documentation
diff --git a/docs/en/data-table/index/bloomfilter.md b/docs/en/data-table/index/bloomfilter.md
index 816f1305a5..c51450cc9d 100644
--- a/docs/en/data-table/index/bloomfilter.md
+++ b/docs/en/data-table/index/bloomfilter.md
@@ -28,9 +28,9 @@ under the License.
 
 BloomFilter is a fast search algorithm for multi-hash function mapping proposed by Bloom in 1970. Usually used in some occasions where it is necessary to quickly determine whether an element belongs to a set, but is not strictly required to be 100% correct, BloomFilter has the following characteristics:
 
--A highly space-efficient probabilistic data structure used to check whether an element is in a set.
--For a call to detect whether an element exists, BloomFilter will tell the caller one of two results: it may exist or it must not exist.
--The disadvantage is that there is a misjudgment, telling you that it may exist, not necessarily true.
+- A highly space-efficient probabilistic data structure used to check whether an element is in a set.
+- For a call to detect whether an element exists, BloomFilter will tell the caller one of two results: it may exist or it must not exist.
+- The disadvantage is that there is a misjudgment, telling you that it may exist, not necessarily true.
 
 Bloom filter is actually composed of an extremely long binary bit array and a series of hash functions. The binary bit array is all 0 initially. When an element to be queried is given, this element will be calculated by a series of hash functions to map out a series of values, and all values are treated as 1 in the offset of the bit array.
 
diff --git a/docs/zh-CN/community/how-to-contribute/how-to-contribute.md b/docs/zh-CN/community/how-to-contribute/how-to-contribute.md
index f6d0a28727..3023fcaf14 100644
--- a/docs/zh-CN/community/how-to-contribute/how-to-contribute.md
+++ b/docs/zh-CN/community/how-to-contribute/how-to-contribute.md
@@ -55,9 +55,9 @@ under the License.
 | [Backend daemon (BE)](https://github.com/apache/incubator-doris) | 负责存储数据和执行查询片段 | C++|
 | [Broker](https://github.com/apache/incubator-doris) | 读取 HDFS 数据到 Doris | Java |
 | [Website](https://github.com/apache/incubator-doris-website) | Doris 网站 | Markdown |
-| [Manager](https://github.com/apache/incubator-doris-website) | Doris Manager | Markdown |
-| [Flink-Connector](https://github.com/apache/incubator-doris-flink-connector) | Doris Flink Connector | Markdown |
-| [Spark-Connector](https://github.com/apache/incubator-doris-spark-connector) | Doris Spark Connector | Markdown |
+| [Manager](https://github.com/apache/incubator-doris-manager) | Doris Manager | Java |
+| [Flink-Connector](https://github.com/apache/incubator-doris-flink-connector) | Doris Flink Connector | Java |
+| [Spark-Connector](https://github.com/apache/incubator-doris-spark-connector) | Doris Spark Connector | Java |
 | Doris 运行时 help 文档 | 运行 Doris 的时候的在线帮助手册 | Markdown |
 
 ## 改进文档


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org