This is an automated email from the ASF dual-hosted git repository.
sylviasu 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 1a34a29af docs: Fix some errors in Chinese document preallocation
table (#10768)
1a34a29af is described below
commit 1a34a29af57213b529e94a2c9962650b776ff954
Author: baiyun <[email protected]>
AuthorDate: Sun Jan 7 08:20:34 2024 +0800
docs: Fix some errors in Chinese document preallocation table (#10768)
---
docs/zh/latest/CODE_STYLE.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/zh/latest/CODE_STYLE.md b/docs/zh/latest/CODE_STYLE.md
index fcd4f8a98..56cbe0e0b 100644
--- a/docs/zh/latest/CODE_STYLE.md
+++ b/docs/zh/latest/CODE_STYLE.md
@@ -268,7 +268,7 @@ end
```lua
--Yes
local new_tab = require "table.new"
-local t = new_tab(100, 0)
+local t = new_tab(100000, 0)
for i = 1, 100000 do
t[i] = "a"
end