From 95d89d8f32f9a96ef14f0af9540c003a17354ef4 Mon Sep 17 00:00:00 2001 From: xplorer1 Date: Wed, 2 Aug 2023 14:08:57 +0100 Subject: [PATCH] Update functions.md There was a little grammatical error in this section. I modified: `DON'T let `println!` works` to `DON'T let `println!` work` --- en/src/basic-types/functions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en/src/basic-types/functions.md b/en/src/basic-types/functions.md index 6f4abfe..b8a403d 100644 --- a/en/src/basic-types/functions.md +++ b/en/src/basic-types/functions.md @@ -35,7 +35,7 @@ fn print() -> i32 { ```rust,editable // Solve it in two ways -// DON'T let `println!` works +// DON'T let `println!` work fn main() { never_return(); @@ -98,4 +98,4 @@ fn main() { } ``` -> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/basic-types/functions.md)(under the solutions path), but only use it when you need it \ No newline at end of file +> You can find the solutions [here](https://github.com/sunface/rust-by-practice/blob/master/solutions/basic-types/functions.md)(under the solutions path), but only use it when you need it