From a1ad719a0317ccb4fa17f05c3d6b2516885a1847 Mon Sep 17 00:00:00 2001 From: HengYi Wei Date: Sat, 8 Oct 2022 13:57:32 +0800 Subject: [PATCH] Update ch5-09.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 翻译问题 --- ch5/ch5-09.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch5/ch5-09.md b/ch5/ch5-09.md index a91cbee..4c06a04 100644 --- a/ch5/ch5-09.md +++ b/ch5/ch5-09.md @@ -17,7 +17,7 @@ default: } ``` -断言函数必须满足的前置条件是明智的做法,但这很容易被滥用。除非你能提供更多的错误信息,或者能更快速的发现错误,否则不需要使用断言,编译器在运行时会帮你检查代码。 +断言函数必须满足的前置条件是明智的做法,但这很容易被滥用。除非你能提供更多的错误信息,或者能更快速的发现错误,否则不需要断言那些运行时会检查的条件。 ```Go func Reset(x *Buffer) {