From f7ce2acacc42708e5bcf5de0f290b748c915ec51 Mon Sep 17 00:00:00 2001 From: Rhys Date: Wed, 26 Mar 2025 12:42:31 -0400 Subject: [PATCH] Grammar --- src/error/panic.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/error/panic.md b/src/error/panic.md index 8e3f101090..0544f2237f 100644 --- a/src/error/panic.md +++ b/src/error/panic.md @@ -6,7 +6,7 @@ Here, we explicitly call `panic` on our error condition: ```rust,editable,ignore,mdbook-runnable fn drink(beverage: &str) { - // You shouldn't drink too much sugary beverages. + // You shouldn't drink too many sugary beverages. if beverage == "lemonade" { panic!("AAAaaaaa!!!!"); } println!("Some refreshing {} is all I need.", beverage);