You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by ju...@apache.org on 2021/02/14 03:30:50 UTC

[apisix] branch master updated: docs: fix spelling 'filer' should be 'filter' (#3589)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 78e544b  docs: fix spelling 'filer' should be 'filter' (#3589)
78e544b is described below

commit 78e544bfaa279e4465d9d2ba316383910cbd2f62
Author: John Bampton <jb...@users.noreply.github.com>
AuthorDate: Sun Feb 14 13:30:42 2021 +1000

    docs: fix spelling 'filer' should be 'filter' (#3589)
    
    fixes #3588
---
 README.md                        | 2 +-
 README_CN.md                     | 2 +-
 doc/architecture-design.md       | 2 +-
 doc/plugins/echo.md              | 2 +-
 doc/zh-cn/architecture-design.md | 2 +-
 doc/zh-cn/plugins/echo.md        | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/README.md b/README.md
index ba2f3bc..48d7ee3 100644
--- a/README.md
+++ b/README.md
@@ -133,7 +133,7 @@ A/B testing, canary release, blue-green deployment, limit rate, defense against
   - [Helm charts](https://github.com/apache/apisix-helm-chart)
 
 - **Highly scalable**
-  - [Custom plugins](doc/plugin-develop.md): Allows hooking of common phases, such as `rewrite`, `access`, `header filer`, `body filter` and `log`, also allows to hook the `balancer` stage.
+  - [Custom plugins](doc/plugin-develop.md): Allows hooking of common phases, such as `rewrite`, `access`, `header filter`, `body filter` and `log`, also allows to hook the `balancer` stage.
   - Custom load balancing algorithms: You can use custom load balancing algorithms during the `balancer` phase.
   - Custom routing: Support users to implement routing algorithms themselves.
 
diff --git a/README_CN.md b/README_CN.md
index 18e69d5..dced2f2 100644
--- a/README_CN.md
+++ b/README_CN.md
@@ -131,7 +131,7 @@ A/B 测试、金丝雀发布(灰度发布)、蓝绿部署、限流限速、抵
   - [Helm charts](https://github.com/apache/apisix-helm-chart)
 
 - **高度可扩展**
-  - [自定义插件](doc/zh-cn/plugin-develop.md): 允许挂载常见阶段,例如`init`, `rewrite`,`access`,`balancer`,`header filer`,`body filter` 和 `log` 阶段。
+  - [自定义插件](doc/zh-cn/plugin-develop.md): 允许挂载常见阶段,例如`init`, `rewrite`,`access`,`balancer`,`header filter`,`body filter` 和 `log` 阶段。
   - 自定义负载均衡算法:可以在 `balancer` 阶段使用自定义负载均衡算法。
   - 自定义路由: 支持用户自己实现路由算法。
 
diff --git a/doc/architecture-design.md b/doc/architecture-design.md
index fca94b1..12bede8 100644
--- a/doc/architecture-design.md
+++ b/doc/architecture-design.md
@@ -243,7 +243,7 @@ The `Script` configuration can be directly bound to the `Route`.
 
 In theory, you can write arbitrary Lua code in `Script`, or you can directly call existing plugins to reuse existing code.
 
-`Script` also has the concept of execution phase, supporting `access`, `header_filer`, `body_filter` and `log` phase. The system will automatically execute the code of the corresponding phase in the `Script` script in the corresponding phase.
+`Script` also has the concept of execution phase, supporting `access`, `header_filter`, `body_filter` and `log` phase. The system will automatically execute the code of the corresponding phase in the `Script` script in the corresponding phase.
 
 ```json
 {
diff --git a/doc/plugins/echo.md b/doc/plugins/echo.md
index 118671a..653e5c8 100644
--- a/doc/plugins/echo.md
+++ b/doc/plugins/echo.md
@@ -31,7 +31,7 @@
 
 `echo` is a useful plugin to help users understand as fully as possible how to develop an APISIX plugin.
 
-This plugin addresses the corresponding functionality in the common phases such as init, rewrite, access, balancer, header filer, body filter and log.
+This plugin addresses the corresponding functionality in the common phases such as init, rewrite, access, balancer, header filter, body filter and log.
 
 **NOTE: `echo` plugin is written as an example. There are some unhandled cases and you should not use it in the production!**
 
diff --git a/doc/zh-cn/architecture-design.md b/doc/zh-cn/architecture-design.md
index 3d6d2ab..e854eac 100644
--- a/doc/zh-cn/architecture-design.md
+++ b/doc/zh-cn/architecture-design.md
@@ -249,7 +249,7 @@ local _M = {
 
 理论上,在 `Script` 中可以写任意 lua 代码,也可以直接调用已有插件以重用已有的代码。
 
-`Script` 也有执行阶段概念,支持 `access`、`header_filer`、`body_filter` 和 `log` 阶段。系统会在相应阶段中自动执行 `Script` 脚本中对应阶段的代码。
+`Script` 也有执行阶段概念,支持 `access`、`header_filter`、`body_filter` 和 `log` 阶段。系统会在相应阶段中自动执行 `Script` 脚本中对应阶段的代码。
 
 ```json
 {
diff --git a/doc/zh-cn/plugins/echo.md b/doc/zh-cn/plugins/echo.md
index d2e3e7a..ab680eb 100644
--- a/doc/zh-cn/plugins/echo.md
+++ b/doc/zh-cn/plugins/echo.md
@@ -31,7 +31,7 @@
 
 echo 可以帮助用户尽可能全面地了解如何开发APISIX插件。
 
-该插件展示了如何在常见的 phase 中实现相应的功能,常见的 phase 包括:init, rewrite, access, balancer, header filer, body filter 以及 log。
+该插件展示了如何在常见的 phase 中实现相应的功能,常见的 phase 包括:init, rewrite, access, balancer, header filter, body filter 以及 log。
 
 **注意:该插件仅用作示例,并没有处理一些特别的场景。请勿将之用于生产环境上!**