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:27:42 UTC

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

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 3f55c14  fix docs typo (#4722)
3f55c14 is described below

commit 3f55c1425cf171eace6f76a821c6a05d28b5972d
Author: Zhengguo Yang <ya...@gmail.com>
AuthorDate: Wed Oct 14 09:27:12 2020 +0800

    fix docs typo (#4722)
---
 .../alter-table/alter-table-bitmap-index.md                  |  8 ++++----
 .../alter-table/alter-table-schema-change.md                 | 12 ++++++------
 docs/en/administrator-guide/backup-restore.md                |  4 ++--
 docs/en/administrator-guide/colocation-join.md               |  6 +++---
 docs/en/administrator-guide/config/be_config.md              |  4 ++--
 .../administrator-guide/http-actions/fe/connection-action.md |  2 +-
 docs/en/administrator-guide/load-data/broker-load-manual.md  |  4 ++--
 .../operation/monitor-metrics/be-metrics.md                  |  2 +-
 docs/en/community/committer-guide.md                         |  2 +-
 docs/en/getting-started/advance-usage.md                     |  2 +-
 docs/en/getting-started/basic-usage.md                       |  8 ++++----
 docs/en/getting-started/best-practice.md                     |  4 ++--
 docs/en/installing/compilation.md                            |  2 +-
 .../sql-statements/Administration/ADMIN SET CONFIG.md        |  2 +-
 .../sql-statements/Administration/ALTER CLUSTER.md           |  6 +-----
 .../sql-statements/Administration/ALTER SYSTEM.md            |  2 +-
 .../sql-reference/sql-statements/Data Definition/BACKUP.md   |  2 +-
 .../sql-statements/Data Definition/Colocate Join.md          |  2 +-
 .../sql-statements/Data Manipulation/CANCEL LABEL.md         |  2 +-
 19 files changed, 36 insertions(+), 40 deletions(-)

diff --git a/docs/en/administrator-guide/alter-table/alter-table-bitmap-index.md b/docs/en/administrator-guide/alter-table/alter-table-bitmap-index.md
index c12c823..73c8a4c 100644
--- a/docs/en/administrator-guide/alter-table/alter-table-bitmap-index.md
+++ b/docs/en/administrator-guide/alter-table/alter-table-bitmap-index.md
@@ -32,7 +32,7 @@ This document focuses on how to create an index job, as well as some considerati
 * bitmap index:a fast data structure that speeds up queries
 
 ## Basic Principles
-Creating and droping index is essentially a schema change job. For details, please refer to
+Creating and dropping index is essentially a schema change job. For details, please refer to
 [Schema Change](alter-table-schema-change.html)。
 
 ## Syntax
@@ -53,12 +53,12 @@ create/drop index syntax
     Please refer to [DROP INDEX](../../sql-reference/sql-statements/Data%20Definition/DROP%20INDEX.html) or [ALTER TABLE](../../sql-reference/sql-statements/Data%20Definition/ALTER%20TABLE.html)
 
 ## Create Job
-Please refer to [Scheam Change](alter-table-schema-change.html)
+Please refer to [Schema Change](alter-table-schema-change.html)
 ## View Job
-Please refer to [Scheam Change](alter-table-schema-change.html)
+Please refer to [Schema Change](alter-table-schema-change.html)
 
 ## Cancel Job
-Please refer to [Scheam Change](alter-table-schema-change.html)
+Please refer to [Schema Change](alter-table-schema-change.html)
 
 ## Notice
 * Currently only index of bitmap type is supported.
diff --git a/docs/en/administrator-guide/alter-table/alter-table-schema-change.md b/docs/en/administrator-guide/alter-table/alter-table-schema-change.md
index 9424e0e..bd2a834 100644
--- a/docs/en/administrator-guide/alter-table/alter-table-schema-change.md
+++ b/docs/en/administrator-guide/alter-table/alter-table-schema-change.md
@@ -1,6 +1,6 @@
 ---
 {
-    "title": "Scheam Change",
+    "title": "Schema Change",
     "language": "en"
 }
 ---
@@ -24,9 +24,9 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-# Scheam Change
+# Schema Change
 
-Users can modify the schema of existing tables through the Scheam Change operation. Doris currently supports the following modifications:
+Users can modify the schema of existing tables through the Schema Change operation. Doris currently supports the following modifications:
 
 * Add and delete columns
 * Modify column type
@@ -34,7 +34,7 @@ Users can modify the schema of existing tables through the Scheam Change operati
 * Add and modify Bloom Filter
 * Add and delete bitmap index
 
-This document mainly describes how to create a Scheam Change job, as well as some considerations and frequently asked questions about Scheam Change.
+This document mainly describes how to create a Schema Change job, as well as some considerations and frequently asked questions about Schema Change.
 ## Glossary
 
 * Base Table:When each table is created, it corresponds to a base table. The base table stores the complete data of this table. Rollups are usually created based on the data in the base table (and can also be created from other rollups).
@@ -68,9 +68,9 @@ The basic process of executing a Schema Change is to generate a copy of the inde
 Before starting the conversion of historical data, Doris will obtain a latest transaction ID. And wait for all import transactions before this Transaction ID to complete. This Transaction ID becomes a watershed. This means that Doris guarantees that all import tasks after the watershed will generate data for both the original Index and the new Index. In this way, when the historical data conversion is completed, the data in the new Index can be guaranteed to be complete.
 ## Create Job
 
-The specific syntax for creating a Scheam Change can be found in the description of the Scheam Change section in the help `HELP ALTER TABLE`.
+The specific syntax for creating a Schema Change can be found in the description of the Schema Change section in the help `HELP ALTER TABLE`.
 
-The creation of Scheam Change is an asynchronous process. After the job is submitted successfully, the user needs to view the job progress through the `SHOW ALTER TABLE COLUMN` command.
+The creation of Schema Change is an asynchronous process. After the job is submitted successfully, the user needs to view the job progress through the `SHOW ALTER TABLE COLUMN` command.
 ## View Job
 
 `SHOW ALTER TABLE COLUMN` You can view the Schema Change jobs that are currently executing or completed. When multiple indexes are involved in a Schema Change job, the command displays multiple lines, each corresponding to an index. For example:
diff --git a/docs/en/administrator-guide/backup-restore.md b/docs/en/administrator-guide/backup-restore.md
index 8335050..c19da82 100644
--- a/docs/en/administrator-guide/backup-restore.md
+++ b/docs/en/administrator-guide/backup-restore.md
@@ -121,7 +121,7 @@ The commands related to the backup recovery function are as follows. The followi
 	* Snapshot Finished Time: Snapshot completion time.
 	* Upload Finished Time: Snapshot upload completion time.
 	* FinishedTime: The completion time of this assignment.
-	* Unfinished Tasks: In the `SNAPSHOTTING', `UPLOADING'and other stages, there will be multiple sub-tasks at the same time, the current stage shown here, the task ID of the unfinished sub-tasks.
+	* Unfinished Tasks: In the `SNAPSHOTTING`, `UPLOADING` and other stages, there will be multiple sub-tasks at the same time, the current stage shown here, the task ID of the unfinished sub-tasks.
 	* TaskErrMsg: If there is a sub-task execution error, the error message corresponding to the sub-task will be displayed here.
 	* Status: It is used to record some status information that may appear during the whole operation.
 	* Timeout: The timeout time of a job in seconds.
@@ -139,7 +139,7 @@ The commands related to the backup recovery function are as follows. The followi
 	* Database: The database corresponding to backup.
 	* Details: Shows the complete data directory structure of the backup.
 
-5. RESTOR
+5. RESTORE
 
 	Perform a recovery operation.
 
diff --git a/docs/en/administrator-guide/colocation-join.md b/docs/en/administrator-guide/colocation-join.md
index e899e8c..bf3dfbe 100644
--- a/docs/en/administrator-guide/colocation-join.md
+++ b/docs/en/administrator-guide/colocation-join.md
@@ -57,7 +57,7 @@ In order for a table to have the same data distribution, the table in the same C
 
 Tables in the same CG do not require consistency in the number, scope, and type of partition columns.
 
-After fixing the number of bucket columns and buckets, the tables in the same CG will have the same Buckets Sequnce. The number of replicas determines the number of replicas of Tablets in each bucket, which BE they are stored on. Suppose that Buckets Sequnce is `[0, 1, 2, 3, 4, 5, 6, 7] `, and that BE nodes have `[A, B, C, D] `4. A possible distribution of data is as follows:
+After fixing the number of bucket columns and buckets, the tables in the same CG will have the same Buckets Sequence. The number of replicas determines the number of replicas of Tablets in each bucket, which BE they are stored on. Suppose that Buckets Sequence is `[0, 1, 2, 3, 4, 5, 6, 7] `, and that BE nodes have `[A, B, C, D] `4. A possible distribution of data is as follows:
 
 ```
 +---+ +---+ +---+ +---+ +---+ +---+ +---+ +---+
@@ -141,7 +141,7 @@ SHOW PROC '/colocation_group/10005.10008';
 * BucketIndex: Subscript to the bucket sequence.
 * Backend Ids: A list of BE node IDs where data fragments are located in buckets.
 
-> The above commands require AMDIN privileges. Normal user view is not supported at this time.
+> The above commands require ADMIN privileges. Normal user view is not supported at this time.
 
 ### Modify Colocate Group
 
@@ -172,7 +172,7 @@ Copies can only be stored on specified BE nodes. So when a BE is unavailable (do
 
 ### Duplicate Equilibrium
 
-Doris will try to distribute the fragments of the Collocation table evenly across all BE nodes. For the replica balancing of common tables, the granularity is single replica, that is to say, it is enough to find BE nodes with lower load for each replica alone. The equilibrium of the Colocation table is at the Bucket level, where all replicas within a Bucket migrate together. We adopt a simple equalization algorithm, which distributes Buckets Sequnce evenly on all BEs, regardless of the a [...]
+Doris will try to distribute the fragments of the Collocation table evenly across all BE nodes. For the replica balancing of common tables, the granularity is single replica, that is to say, it is enough to find BE nodes with lower load for each replica alone. The equilibrium of the Colocation table is at the Bucket level, where all replicas within a Bucket migrate together. We adopt a simple equalization algorithm, which distributes Buckets Sequence evenly on all BEs, regardless of the  [...]
 
 > Note 1: Current Colocation replica balancing and repair algorithms may not work well for heterogeneous deployed Oris clusters. The so-called heterogeneous deployment, that is, the BE node's disk capacity, number, disk type (SSD and HDD) is inconsistent. In the case of heterogeneous deployment, small BE nodes and large BE nodes may store the same number of replicas.
 >
diff --git a/docs/en/administrator-guide/config/be_config.md b/docs/en/administrator-guide/config/be_config.md
index 37f46b4..1f34851 100644
--- a/docs/en/administrator-guide/config/be_config.md
+++ b/docs/en/administrator-guide/config/be_config.md
@@ -199,7 +199,7 @@ Similar to `base_compaction_trace_threshold`.
 * Description: Configure the merge policy of the cumulative compaction stage. Currently, two merge policy have been implemented, num_based and size_based.
 * Default value: size_based
 
-In detail, ordinary is the initial version of the cumulative compaction merge policy. After a cumulative compaction, the base compaction process is directly performed. The size_based policy is an optimized version of the ordinary strategy. Versions are merged only when the disk volume of the rowset is of the same order of magnitude. After the compaction, the output rowset which satifies the conditions is promoted to the base compaction stage. In the case of a large number of small batch  [...]
+In detail, ordinary is the initial version of the cumulative compaction merge policy. After a cumulative compaction, the base compaction process is directly performed. The size_based policy is an optimized version of the ordinary strategy. Versions are merged only when the disk volume of the rowset is of the same order of magnitude. After the compaction, the output rowset which satisfies the conditions is promoted to the base compaction stage. In the case of a large number of small batch [...]
 
 ### `cumulative_size_based_promotion_size_mbytes`
 
@@ -337,7 +337,7 @@ The default value is `false`.
 * Default: false
 
 The merged expired rowset version path will be deleted after half an hour. In abnormal situations, deleting these versions will result in the problem that the consistent path of the query cannot be constructed. When the configuration is false, the program check is strict and the program will directly report an error and exit.
-When configured as true, the program will run normally and ignore this error. In general, ignoring this error will not affect the query, only when the merged version is dispathed by fe, -230 error will appear.
+When configured as true, the program will run normally and ignore this error. In general, ignoring this error will not affect the query, only when the merged version is dispatched by fe, -230 error will appear.
 
 ### inc_rowset_expired_sec
 
diff --git a/docs/en/administrator-guide/http-actions/fe/connection-action.md b/docs/en/administrator-guide/http-actions/fe/connection-action.md
index 539c584..d7ee29e 100644
--- a/docs/en/administrator-guide/http-actions/fe/connection-action.md
+++ b/docs/en/administrator-guide/http-actions/fe/connection-action.md
@@ -24,7 +24,7 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-# Conection Action
+# Connection Action
 
 ## Request
 
diff --git a/docs/en/administrator-guide/load-data/broker-load-manual.md b/docs/en/administrator-guide/load-data/broker-load-manual.md
index 75ad21a..0068d93 100644
--- a/docs/en/administrator-guide/load-data/broker-load-manual.md
+++ b/docs/en/administrator-guide/load-data/broker-load-manual.md
@@ -164,7 +164,7 @@ The following is a detailed explanation of some parameters of the data descripti
 
 + negative
 
-	```data_desc``` can also set up data fetching and anti-importing. This function is mainly used when aggregated columns in data tables are of SUM type. If you want to revoke a batch of imported data. The `negative'parameter can be used as a batch of data. Doris automatically retrieves this batch of data on aggregated columns to eliminate the same batch of data.
+	```data_desc``` can also set up data fetching and anti-importing. This function is mainly used when aggregated columns in data tables are of SUM type. If you want to revoke a batch of imported data. The `negative` parameter can be used as a batch of data. Doris automatically retrieves this batch of data on aggregated columns to eliminate the same batch of data.
 
 + partition
 
@@ -377,7 +377,7 @@ The following configurations belong to the Broker load system-level configuratio
 
 + min\_bytes\_per\_broker\_scanner/max\_bytes\_per\_broker\_scanner/max\_broker\_concurrency
 
-	The first two configurations limit the minimum and maximum amount of data processed by a single BE. The third configuration limits the maximum number of concurrent imports for a job. The minimum amount of data processed, the maximum number of concurrencies, the size of source files and the number of BEs in the current cluster **together determine the concurrency of this import**.
+	The first two configurations limit the minimum and maximum amount of data processed by a single BE. The third configuration limits the maximum number of concurrent imports for a job. The minimum amount of data processed, the maximum number of concurrency, the size of source files and the number of BEs in the current cluster **together determine the concurrency of this import**.
 
 	```
 	The number of concurrent imports = Math. min (source file size / minimum throughput, maximum concurrency, current number of BE nodes)
diff --git a/docs/en/administrator-guide/operation/monitor-metrics/be-metrics.md b/docs/en/administrator-guide/operation/monitor-metrics/be-metrics.md
index 4fd45d4..d630d11 100644
--- a/docs/en/administrator-guide/operation/monitor-metrics/be-metrics.md
+++ b/docs/en/administrator-guide/operation/monitor-metrics/be-metrics.md
@@ -62,7 +62,7 @@ Usually used to troubleshoot network problems.
 
 ### `doris_be_snmp{name="tcp_in_segs"}`
 
-Value of the `Tcp: InSegs` field in `/proc/net/snmp`. Represents the number of receivied TCP packets.
+Value of the `Tcp: InSegs` field in `/proc/net/snmp`. Represents the number of received TCP packets.
 
 Use `(NEW_tcp_in_errs - OLD_tcp_in_errs) / (NEW_tcp_in_segs - OLD_tcp_in_segs)` can calculate the error rate of received TCP packets.
 
diff --git a/docs/en/community/committer-guide.md b/docs/en/community/committer-guide.md
index 62fbc05..e86cbb2 100644
--- a/docs/en/community/committer-guide.md
+++ b/docs/en/community/committer-guide.md
@@ -76,7 +76,7 @@ and you will be able to manage issues and pull request directly through our Gith
 
 5. Once a reviewer has commented on a PR, they need to keep following up on subsequent changes to that PR.
 
-6. A PR must get at least a +1 appove from committer who is not the author.
+6. A PR must get at least a +1 approved from committer who is not the author.
 
 7. After the first +1 to the PR, wait at least one working day before merging. The main purpose is to wait for the rest of the community to come to review.
 
diff --git a/docs/en/getting-started/advance-usage.md b/docs/en/getting-started/advance-usage.md
index fdf2983..7012fb4 100644
--- a/docs/en/getting-started/advance-usage.md
+++ b/docs/en/getting-started/advance-usage.md
@@ -114,7 +114,7 @@ After successful submission, you can view the progress of the job by following c
 
 When the job state is FINISHED, the job is completed.
 
-When Rollup is established, you can use `DESC table1 ALL'to view the Rollup information of the table.
+When Rollup is established, you can use `DESC table1 ALL` to view the Rollup information of the table.
 
 ```
 mysql> desc table1 all;
diff --git a/docs/en/getting-started/basic-usage.md b/docs/en/getting-started/basic-usage.md
index 8853a46..41cffa1 100644
--- a/docs/en/getting-started/basic-usage.md
+++ b/docs/en/getting-started/basic-usage.md
@@ -72,9 +72,9 @@ Initially, a database can be created through root or admin users:
 
 `CREATE DATABASE example_db;`
 
-> All commands can use'HELP command;'to see detailed grammar help. For example: `HELP CREATE DATABASE;'`
+> All commands can use `HELP` command to see detailed grammar help. For example: `HELP CREATE DATABASE;'`
 
-> If you don't know the full name of the command, you can use "help command a field" for fuzzy query. If you type'HELP CREATE', you can match commands like `CREATE DATABASE', `CREATE TABLE', `CREATE USER', etc.
+> If you don't know the full name of the command, you can use "help command a field" for fuzzy query. If you type `HELP CREATE`, you can match commands like `CREATE DATABASE', `CREATE TABLE', `CREATE USER', etc.
 
 After the database is created, you can view the database information through `SHOW DATABASES'.
 
@@ -99,7 +99,7 @@ After the example_db is created, the read and write permissions of example_db ca
 
 ### 2.3 Formulation
 
-Create a table using the `CREATE TABLE'command. More detailed parameters can be seen:
+Create a table using the `CREATE TABLE` command. More detailed parameters can be seen:
 
 `HELP CREATE TABLE;`
 
@@ -315,7 +315,7 @@ Broker imports are asynchronous commands. Successful execution of the above comm
 
 `SHOW LOAD WHERE LABLE = "table1_20170708";`
 
-In the return result, FINISHED in the `State'field indicates that the import was successful.
+In the return result, FINISHED in the `State` field indicates that the import was successful.
 
 For more instructions on `SHOW LOAD`, see` HELP SHOW LOAD; `
 
diff --git a/docs/en/getting-started/best-practice.md b/docs/en/getting-started/best-practice.md
index 253695a..b29ca83 100644
--- a/docs/en/getting-started/best-practice.md
+++ b/docs/en/getting-started/best-practice.md
@@ -53,7 +53,7 @@ DISTRIBUTED BY HASH(siteid) BUCKETS 10;
 
 1.1.2. KEY UNIQUE
 
-When UNIQUE KEY is the same, the new record covers the old record. At present, UNIQUE KEY implements the same RPLACE aggregation method as GGREGATE KEY, and they are essentially the same. Suitable for analytical business with updated requirements.
+When UNIQUE KEY is the same, the new record covers the old record. At present, UNIQUE KEY implements the same REPLACE aggregation method as AGGREGATE KEY, and they are essentially the same. Suitable for analytical business with updated requirements.
 
 ```
 CREATE TABLE sales_order
@@ -141,7 +141,7 @@ For the `site_visit'table:
 site -u visit (siteid, city, username, pv)
 ```
 
-Siteid may lead to a low degree of data aggregation. If business parties often base their PV needs on city statistics, they can build a city-only, PV-based ollup:
+Siteid may lead to a low degree of data aggregation. If business parties often base their PV needs on city statistics, they can build a city-only, PV-based rollup:
 
 ```
 ALTER TABLE site_visit ADD ROLLUP rollup_city(city, pv);
diff --git a/docs/en/installing/compilation.md b/docs/en/installing/compilation.md
index 0d4d2c7..94bd5f9 100644
--- a/docs/en/installing/compilation.md
+++ b/docs/en/installing/compilation.md
@@ -84,7 +84,7 @@ Note: For different versions of Oris, you need to download the corresponding mir
 
 ### Self-compiling Development Environment Mirror
 
-You can also create a Doris development environment mirror yourself, referring specifically to the `docker/README.md'file.
+You can also create a Doris development environment mirror yourself, referring specifically to the `docker/README.md` file.
 
 
 ## Direct Compilation (CentOS/Ubuntu)
diff --git a/docs/en/sql-reference/sql-statements/Administration/ADMIN SET CONFIG.md b/docs/en/sql-reference/sql-statements/Administration/ADMIN SET CONFIG.md
index 02f19b9..ad87db2 100644
--- a/docs/en/sql-reference/sql-statements/Administration/ADMIN SET CONFIG.md	
+++ b/docs/en/sql-reference/sql-statements/Administration/ADMIN SET CONFIG.md	
@@ -28,7 +28,7 @@ under the License.
 ## Description
 
 This statement is used to set the configuration items for the cluster (currently only the configuration items for setting FE are supported).
-Settable configuration items can be viewed through AMDIN SHOW FRONTEND CONFIG; commands.
+Settable configuration items can be viewed through `ADMIN SHOW FRONTEND CONFIG;` commands.
 
 Grammar:
 
diff --git a/docs/en/sql-reference/sql-statements/Administration/ALTER CLUSTER.md b/docs/en/sql-reference/sql-statements/Administration/ALTER CLUSTER.md
index 618f033..12643ab 100644
--- a/docs/en/sql-reference/sql-statements/Administration/ALTER CLUSTER.md	
+++ b/docs/en/sql-reference/sql-statements/Administration/ALTER CLUSTER.md	
@@ -33,11 +33,7 @@ grammar
 
 ALTER CLUSTER cluster_name PROPERTIES ("key"="value", ...);
 
-1. Scaling, scaling (according to the number of be existing in the cluster, large is scaling, small is scaling), scaling for synchronous operation, scaling for asynchronous operation, through the state of backend can be known whether the scaling is completed.
-
-Proerties ("Instrume = Unum"= "3")
-
-Instancefn Microsoft Yahei
+1. Scaling, scaling (according to the number of be existing in the cluster, large is scaling, small is scaling), scaling for synchronous operation, scaling for asynchronous operation, through the state of backend can be known whether the scaling is completed. 
 
 ## example
 
diff --git a/docs/en/sql-reference/sql-statements/Administration/ALTER SYSTEM.md b/docs/en/sql-reference/sql-statements/Administration/ALTER SYSTEM.md
index 7984477..ffe4fb3 100644
--- a/docs/en/sql-reference/sql-statements/Administration/ALTER SYSTEM.md	
+++ b/docs/en/sql-reference/sql-statements/Administration/ALTER SYSTEM.md	
@@ -106,7 +106,7 @@ ALTER SYSTEM SET LOAD ERRORS HUB PROPERTIES
 ("type"= "broker",
 "Name" = BOS,
 "path" = "bos://backup-cmy/logs",
-"bosu endpoint" ="http://gz.bcebos.com",
+"bos_endpoint" ="http://gz.bcebos.com",
 "bos_accesskey" = "069fc278xxxxxx24ddb522",
 "bos_secret_accesskey"="700adb0c6xxxxxx74d59eaa980a"
 );
diff --git a/docs/en/sql-reference/sql-statements/Data Definition/BACKUP.md b/docs/en/sql-reference/sql-statements/Data Definition/BACKUP.md
index c588e2c..2e8f20b 100644
--- a/docs/en/sql-reference/sql-statements/Data Definition/BACKUP.md	
+++ b/docs/en/sql-reference/sql-statements/Data Definition/BACKUP.md	
@@ -31,7 +31,7 @@ Grammar:
 BACKUP SNAPSHOT [db_name].{snapshot_name}
 TO `repository_name`
 ON (
-"`Table `U name'[Distriction (`P1',...)],
+`Table_name` [partition (`P1',...)],
 ...
 )
 PROPERTIES ("key"="value", ...);
diff --git a/docs/en/sql-reference/sql-statements/Data Definition/Colocate Join.md b/docs/en/sql-reference/sql-statements/Data Definition/Colocate Join.md
index f202718..11730b5 100644
--- a/docs/en/sql-reference/sql-statements/Data Definition/Colocate Join.md	
+++ b/docs/en/sql-reference/sql-statements/Data Definition/Colocate Join.md	
@@ -61,7 +61,7 @@ PROPERTIES (
 1. Colcoate Table must be an OLAP-type table
 2. The BUCKET number of tables with the same colocate_with attribute must be the same
 3. The number of copies of tables with the same colocate_with attribute must be the same
-4. Data types of DISTRIBUTTED Columns for tables with the same colocate_with attribute must be the same
+4. Data types of DISTRIBUTED Columns for tables with the same colocate_with attribute must be the same
 
 3 Colocate Join's applicable scenario:
 
diff --git a/docs/en/sql-reference/sql-statements/Data Manipulation/CANCEL LABEL.md b/docs/en/sql-reference/sql-statements/Data Manipulation/CANCEL LABEL.md
index 5b7ff63..990f3b4 100644
--- a/docs/en/sql-reference/sql-statements/Data Manipulation/CANCEL LABEL.md	
+++ b/docs/en/sql-reference/sql-statements/Data Manipulation/CANCEL LABEL.md	
@@ -50,4 +50,4 @@ ERRORS
 curl -u root -XPOST http://host:port/api/testDb/testLabel/_cancel
 
 ## keyword
-Cancel, Rabel
+Cancel, Label


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