From 8c718b860dd04d6d8431efac5f57c4929ed22f22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Marczell?= <30615058+andy-3000@users.noreply.github.com> Date: Sat, 25 Nov 2023 06:23:13 +0100 Subject: [PATCH] fixed grammar in functions exercise #3 Removed unnecessary third person 's' --- 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