From ad5f2554a980e2469fac597a246c31b78d3ffad9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=9F=A9=E6=B1=9F=E5=BE=A1?= Date: Thu, 13 Apr 2023 11:03:31 +0800 Subject: [PATCH] Update char-bool.md --- solutions/basic-types/char-bool.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/solutions/basic-types/char-bool.md b/solutions/basic-types/char-bool.md index df2da99..8074656 100644 --- a/solutions/basic-types/char-bool.md +++ b/solutions/basic-types/char-bool.md @@ -59,12 +59,12 @@ fn main() { } fn implicitly_ret_unit() { - println!("I will returen a ()") + println!("I will return a ()") } // don't use this one fn explicitly_ret_unit() -> () { - println!("I will returen a ()") + println!("I will return a ()") } ```