You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by qi...@apache.org on 2020/11/22 09:32:20 UTC

[iotdb] branch master updated: Correct the spelling of Clinet to Client in contribute guide (#2100)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new e6dca0a  Correct the spelling of Clinet to Client in contribute guide (#2100)
e6dca0a is described below

commit e6dca0a12eac457732ba0b0c539efd50e6cc28d5
Author: Benedict Jin <as...@apache.org>
AuthorDate: Sun Nov 22 17:32:07 2020 +0800

    Correct the spelling of Clinet to Client in contribute guide (#2100)
---
 docs/Development/ContributeGuide.md    | 2 +-
 docs/zh/Development/ContributeGuide.md | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/Development/ContributeGuide.md b/docs/Development/ContributeGuide.md
index 04369c5..85ad9e5 100644
--- a/docs/Development/ContributeGuide.md
+++ b/docs/Development/ContributeGuide.md
@@ -102,7 +102,7 @@ You can go to jira to pick up the existing issue or create your own issue and ge
 Recommended Use Intellij idea. ```mvn clean package -DskipTests``` After putting ```antlr/target/generated-sources/antlr4``` and ```thrift/target/generated-sources/thrift``` marked as ```Source Root```。 
 
 * Server main function:```server/src/main/java/org/apache/iotdb/db/service/IoTDB```,Can be started in debug mode
-* Client:```cli/src/main/java/org/apache/iotdb/cli/```,Use Clinet for linux and WinClint for windows, you can start directly, need the parameter "-h 127.0.0.1 -p 6667 -u root -pw root"
+* Client:```cli/src/main/java/org/apache/iotdb/cli/```,Use Client for linux and WinClint for windows, you can start directly, need the parameter "-h 127.0.0.1 -p 6667 -u root -pw root"
 * Server rpc implementation (mainly used for client and server communication, generally start interruption point here):```server/src/main/java/org/apache/iotdb/db/service/TSServiceImpl```
   * all jdbc statements:executeStatement(TSExecuteStatementReq req)
   * jdbc query:executeQueryStatement(TSExecuteStatementReq req)	
diff --git a/docs/zh/Development/ContributeGuide.md b/docs/zh/Development/ContributeGuide.md
index 6b1d910..73ab583 100644
--- a/docs/zh/Development/ContributeGuide.md
+++ b/docs/zh/Development/ContributeGuide.md
@@ -118,7 +118,7 @@ import -> Maven -> Existing Maven Projects
 ## 调试代码
 
 * 服务器主函数:```server/src/main/java/org/apache/iotdb/db/service/IoTDB```,可以debug模式启动
-* 客户端:```cli/src/main/java/org/apache/iotdb/cli/```,linux 用 Clinet,windows 用 WinClint,可以直接启动,需要参数"-h 127.0.0.1 -p 6667 -u root -pw root"
+* 客户端:```cli/src/main/java/org/apache/iotdb/cli/```,linux 用 Client,windows 用 WinClint,可以直接启动,需要参数"-h 127.0.0.1 -p 6667 -u root -pw root"
 * 服务器的 rpc 实现(主要用来客户端和服务器通信,一般在这里开始打断点):```server/src/main/java/org/apache/iotdb/db/service/TSServiceImpl```
 	* jdbc所有语句:executeStatement(TSExecuteStatementReq req)
 	* jdbc查询语句:executeQueryStatement(TSExecuteStatementReq req)