From 6d21608224beaa11618f328593f64a857788c087 Mon Sep 17 00:00:00 2001 From: sverdiyev Date: Wed, 19 Apr 2023 18:43:14 +0200 Subject: [PATCH] fix typo --- 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 ()") } ```