From 3e45c27c6581670da5a645ffcdd0dfc8fb113d89 Mon Sep 17 00:00:00 2001 From: Sunman <12025422+synhi@users.noreply.github.com> Date: Wed, 19 Jun 2024 19:01:04 +0800 Subject: [PATCH] Update ch09-03-to-panic-or-not-to-panic.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 示例 9-13 没有显示 --- src/ch09-03-to-panic-or-not-to-panic.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch09-03-to-panic-or-not-to-panic.md b/src/ch09-03-to-panic-or-not-to-panic.md index 2bf5e0f..776c118 100644 --- a/src/ch09-03-to-panic-or-not-to-panic.md +++ b/src/ch09-03-to-panic-or-not-to-panic.md @@ -59,7 +59,7 @@ 相反我们可以创建一个新类型来将验证放入创建其实例的函数中,而不是到处重复这些检查。这样就可以安全地在函数签名中使用新类型并相信它们接收到的值。示例 9-13 中展示了一个定义 `Guess` 类型的方法,只有在 `new` 函数接收到 1 到 100 之间的值时才会创建 `Guess` 的实例: ```rust -{{#include ../listings/ch09-error-handling/listing-09-13/src/lib.rs:here}} +{{#rustdoc_include ../listings/ch09-error-handling/listing-09-13/src/lib.rs:here}} ``` 示例 9-13:一个 `Guess` 类型,它只在值位于 1 和 100 之间时才继续