From 557da037c76a48ab7e689997651630e55f80f2f9 Mon Sep 17 00:00:00 2001 From: Via Lyu <147687384+JINHUILYU@users.noreply.github.com> Date: Wed, 2 Apr 2025 20:30:42 +0800 Subject: [PATCH] Update index.zh-CN.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix translation inconsistency: Update incorrect term "组建" to the correct term "组件" at line 645. --- blog/content/edition-2/posts/04-testing/index.zh-CN.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/content/edition-2/posts/04-testing/index.zh-CN.md b/blog/content/edition-2/posts/04-testing/index.zh-CN.md index f1ed7810..236d51d3 100644 --- a/blog/content/edition-2/posts/04-testing/index.zh-CN.md +++ b/blog/content/edition-2/posts/04-testing/index.zh-CN.md @@ -642,7 +642,7 @@ fn test_println_output() { 如你所想,我们可以创建更多的测试函数:例如一个用来测试当打印一个很长的且包装正确的行时是否会发生panic的函数,或是一个用于测试换行符、不可打印字符、非unicode字符是否能被正确处理的函数。 -在这篇文章的剩余部分,我们还会解释如何创建一个 _集成测试_ 以测试不同组建之间的交互。 +在这篇文章的剩余部分,我们还会解释如何创建一个 _集成测试_ 以测试不同组件之间的交互。 ## 集成测试