From 1a34a29af57213b529e94a2c9962650b776ff954 Mon Sep 17 00:00:00 2001 From: baiyun <337531158@qq.com> Date: Sun, 7 Jan 2024 08:20:34 +0800 Subject: [PATCH] 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 fcd4f8a9850d..56cbe0e0bc51 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