This is an automated email from the ASF dual-hosted git repository.
dengliming pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-shenyu-website.git
The following commit(s) were added to refs/heads/main by this push:
new a2c0a44 update 1-code-suggestions.md (#301)
a2c0a44 is described below
commit a2c0a44632683fe33ff6a9fd00cd67d16ecc4bec
Author: zenglinhui <[email protected]>
AuthorDate: Wed Sep 29 22:25:27 2021 +0800
update 1-code-suggestions.md (#301)
"ConcurrenHashMap" change to "ConcurrentHashMap"
---
.../current/1-code-suggestions.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/i18n/zh/docusaurus-plugin-content-docs-community/current/1-code-suggestions.md
b/i18n/zh/docusaurus-plugin-content-docs-community/current/1-code-suggestions.md
index 156e89a..1c0d74e 100644
---
a/i18n/zh/docusaurus-plugin-content-docs-community/current/1-code-suggestions.md
+++
b/i18n/zh/docusaurus-plugin-content-docs-community/current/1-code-suggestions.md
@@ -64,7 +64,7 @@ for () {
### Map
-* 当在并发场景时候,必须使用 `ConcurrenHashMap`,其他场景请使用 `HashMap`。
+* 当在并发场景时候,必须使用 `ConcurrentHashMap`,其他场景请使用 `HashMap`。
* 使用最优的方式迭代或者使用`lambda`表达式。