You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by ya...@apache.org on 2020/10/14 01:28:34 UTC

[incubator-doris] branch master updated: fix docs typo (#4727)

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

yangzhg 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 2959a6b  fix docs typo (#4727)
2959a6b is described below

commit 2959a6b24fa347c889c5e44747ca025ac608d520
Author: Zhengguo Yang <ya...@gmail.com>
AuthorDate: Wed Oct 14 09:28:25 2020 +0800

    fix docs typo (#4727)
---
 docs/zh-CN/administrator-guide/http-actions/profile-action.md   | 2 +-
 docs/zh-CN/administrator-guide/load-data/routine-load-manual.md | 2 +-
 docs/zh-CN/administrator-guide/resource-management.md           | 2 +-
 docs/zh-CN/administrator-guide/running-profile.md               | 2 +-
 docs/zh-CN/community/release-process.md                         | 2 +-
 docs/zh-CN/extending-doris/udf/user-defined-function.md         | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/docs/zh-CN/administrator-guide/http-actions/profile-action.md b/docs/zh-CN/administrator-guide/http-actions/profile-action.md
index 84bde4c..f0cb2c4 100644
--- a/docs/zh-CN/administrator-guide/http-actions/profile-action.md
+++ b/docs/zh-CN/administrator-guide/http-actions/profile-action.md
@@ -1,6 +1,6 @@
 ---
 {
-    "title": "RPOFILE",
+    "title": "PROFILE",
     "language": "zh-CN"
 }
 ---
diff --git a/docs/zh-CN/administrator-guide/load-data/routine-load-manual.md b/docs/zh-CN/administrator-guide/load-data/routine-load-manual.md
index 8caef4b..4733383 100644
--- a/docs/zh-CN/administrator-guide/load-data/routine-load-manual.md
+++ b/docs/zh-CN/administrator-guide/load-data/routine-load-manual.md
@@ -151,7 +151,7 @@ FE 中的 JobScheduler 根据汇报结果,继续生成后续新的 Task,或
 
 * data\_source\_properties
 
-    `data_source_properties` 中可以指定消费具体的 Kakfa partition。如果不指定,则默认消费所订阅的 topic 的所有 partition。
+    `data_source_properties` 中可以指定消费具体的 Kafka partition。如果不指定,则默认消费所订阅的 topic 的所有 partition。
 
     注意,当显式的指定了 partition,则导入作业不会再动态的检测 Kafka partition 的变化。如果没有指定,则会根据 kafka partition 的变化,动态调整需要消费的 partition。
 
diff --git a/docs/zh-CN/administrator-guide/resource-management.md b/docs/zh-CN/administrator-guide/resource-management.md
index cb9a86a..897fb53 100644
--- a/docs/zh-CN/administrator-guide/resource-management.md
+++ b/docs/zh-CN/administrator-guide/resource-management.md
@@ -70,7 +70,7 @@ under the License.
 
 ## 支持的资源
 
-目前Dorisn能够支持
+目前Doris能够支持
 * Spark资源 : 完成ETL工作。
 * ODBC资源:查询和导入外部表的数据
 
diff --git a/docs/zh-CN/administrator-guide/running-profile.md b/docs/zh-CN/administrator-guide/running-profile.md
index cc1fb48..205a356 100644
--- a/docs/zh-CN/administrator-guide/running-profile.md
+++ b/docs/zh-CN/administrator-guide/running-profile.md
@@ -65,7 +65,7 @@ Query:
     Default Db: default_cluster:test
     Sql Statement: select max(Bid_Price) from quotes group by Symbol
 ```
-这里详尽的列出了**查询的ID,执行时间,执行语句**等等的总结信息。接下来内容是打印从BE收集到的各个Fragement的详细信息。
+这里详尽的列出了**查询的ID,执行时间,执行语句**等等的总结信息。接下来内容是打印从BE收集到的各个Fragment的详细信息。
  ```
     Fragment 0:
       Instance 9664061c57e84404-85ae111b8ba7e83d (host=TNetworkAddress(hostname:192.168.0.1, port:9060)):(Active: 10s270ms, % non-child: 0.14%)
diff --git a/docs/zh-CN/community/release-process.md b/docs/zh-CN/community/release-process.md
index b852374..d828df3 100644
--- a/docs/zh-CN/community/release-process.md
+++ b/docs/zh-CN/community/release-process.md
@@ -26,7 +26,7 @@ under the License.
 
 # Apache Doris 发布流程
 
-Apache 的发布必须至少是 IPMC 成员,拥有 apache 邮箱的commiter,这个角色叫做 release manager。
+Apache 的发布必须至少是 IPMC 成员,拥有 apache 邮箱的committer,这个角色叫做 release manager。
 
 发布的大致流程如下:
 
diff --git a/docs/zh-CN/extending-doris/udf/user-defined-function.md b/docs/zh-CN/extending-doris/udf/user-defined-function.md
index 8c896b5..d4c8c7b 100644
--- a/docs/zh-CN/extending-doris/udf/user-defined-function.md
+++ b/docs/zh-CN/extending-doris/udf/user-defined-function.md
@@ -240,7 +240,7 @@ UDF 能满足的分析需求分为两种:UDF 和 UDAF。本文中的 UDF 指
 
 通过上述的步骤后,你可以得到 UDF 的动态库(也就是编译结果中的 `.so` 文件)。你需要将这个动态库放到一个能够通过 HTTP 协议访问到的位置。
 
-然后登录 Doris 系统,在 mysql-client 中通过 `CREATE FUNCTION` 语法创建 UDF 函数。你需要拥有AMDIN权限才能够完成这个操作。这时 Doris 系统内部就会存在刚才创建好的 UDF。
+然后登录 Doris 系统,在 mysql-client 中通过 `CREATE FUNCTION` 语法创建 UDF 函数。你需要拥有ADMIN权限才能够完成这个操作。这时 Doris 系统内部就会存在刚才创建好的 UDF。
 
 ```
 CREATE [AGGREGATE] FUNCTION 


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