edmondsky commented on a change in pull request #16490:
URL: https://github.com/apache/flink/pull/16490#discussion_r673592780



##########
File path: docs/content.zh/docs/dev/datastream/application_parameters.md
##########
@@ -28,13 +28,13 @@ under the License.
 
 应用程序参数处理
 -------------------------------
-几乎所有的 Flink 
应用程序,也就是批和流程序,都依赖于外部配置参数。这些配置参数指定输入和输出源(如路径或地址),系统参数(并行度,运行时配置)和应用程序特定参数(通常在用户函数中使用)。
+几乎所有的批和流的 Flink 
应用程序,都依赖于外部配置参数。这些配置参数可以用于指定输入和输出源(如路径或地址)、系统参数(并行度,运行时配置)和特定的应用程序参数(通常使用在用户自定义函数)。
 
-Flink 提供一个名为 `Parametertool` 的简单实用类,为解决以上问题提供了基本的工具。请注意,此处描述的 `Parametertool` 
并不是必须的。[Commons CLI](https://commons.apache.org/proper/commons-cli/) 和 
[argparse4j](http://argparse4j.sourceforge.net/) 等其他框架也可以非常好地兼容 Flink。
+为解决以上问题,Flink 提供一个名为 `Parametertool` 的简单公共类,其中包含了一些基本的工具。请注意,这里说的 
`Parametertool` 并不是必须使用的。[Commons 
CLI](https://commons.apache.org/proper/commons-cli/) 和 
[argparse4j](http://argparse4j.sourceforge.net/) 等其他框架也可以非常好地兼容 Flink。
 
 ### `ParameterTool` 读取配置值
 
-`ParameterTool` 提供一组预定义的静态方法,用于读取配置信息。该工具类内部实现倾向于使用 
`Map<string,string>`,因此很容易与我们自己的配置集成。
+`ParameterTool` 已经定义好了一组静态方法,用于读取配置信息。该工具类内部使用了 `Map<string,string>` 
类型,这样使得它可能很容易的与你的配置集成在一起。

Review comment:
       ```suggestion
   `ParameterTool` 已经定义好了一组静态方法,用于读取配置信息。该工具类内部使用了 `Map<string,string>` 
类型,这样使得它可以很容易的与你的配置集成在一起。
   ```




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to