You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by me...@apache.org on 2020/07/30 05:15:11 UTC

[incubator-apisix] branch master updated: doc: corrected some typo (#1938)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new f4aaf9a  doc: corrected some typo (#1938)
f4aaf9a is described below

commit f4aaf9a0a6a02d6f912bafca9d1fd85f1f2f12ee
Author: Lien <li...@apache.org>
AuthorDate: Thu Jul 30 13:15:01 2020 +0800

    doc: corrected some typo (#1938)
---
 doc/architecture-design.md       | 2 +-
 doc/zh-cn/architecture-design.md | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/architecture-design.md b/doc/architecture-design.md
index 8de3fbb..ece3ff5 100644
--- a/doc/architecture-design.md
+++ b/doc/architecture-design.md
@@ -453,7 +453,7 @@ Set the route that best suits your business needs in the local configuration `co
         * `Absolute match `: Complete match for the given `uri` , such as `/foo/bar`,`/foo/glo`.
         * `Prefix match`: Use `*` at the end to represent the given `uri` as a prefix match. For example, `/foo*` allows matching `/foo/`, `/foo/a` and `/foo/b`.
         * `match priority`: first try absolute match, if you can't hit absolute match, try prefix match.
-        * `Any filter attribute`: Allows you to specify any Ningx built-in variable as a filter, such as URL request parameters, request headers, cookies, and so on.
+        * `Any filter attribute`: Allows you to specify any Nginx built-in variable as a filter, such as URL request parameters, request headers, cookies, and so on.
     * `radixtree_host_uri`: Use `host + uri` as the primary index (based on the `radixtree` engine), matching both host and URL for the current request.
 
 * `apisix.router.ssl`: SSL loads the matching route.
diff --git a/doc/zh-cn/architecture-design.md b/doc/zh-cn/architecture-design.md
index 1f0399b..ecacc58 100644
--- a/doc/zh-cn/architecture-design.md
+++ b/doc/zh-cn/architecture-design.md
@@ -464,7 +464,7 @@ APISIX 区别于其他 API 网关的一大特点是允许用户选择不同 Rout
         * `绝对匹配`:完整匹配给定的 `uri` ,比如 `/foo/bar`,`/foo/glo`。
         * `前缀匹配`:末尾使用 `*` 代表给定的 `uri` 是前缀匹配。比如 `/foo*`,则允许匹配 `/foo/`、`/foo/a`和`/foo/b`等。
         * `匹配优先级`:优先尝试绝对匹配,若无法命中绝对匹配,再尝试前缀匹配。
-        * `任意过滤属性`:允许指定任何 Ningx 内置变量作为过滤条件,比如 URL 请求参数、请求头、cookie 等。
+        * `任意过滤属性`:允许指定任何 Nginx 内置变量作为过滤条件,比如 URL 请求参数、请求头、cookie 等。
     * `radixtree_host_uri`: 使用 `host + uri` 作为主索引(基于 `radixtree` 引擎),对当前请求会同时匹配 host 和 uri,支持的匹配条件与 `radixtree_uri` 基本一致。
 
 * `apisix.router.ssl`: SSL 加载匹配路由。