Skip to content

Commit

Permalink
fix(functions5): Remove wrong new line and small English improvements (
Browse files Browse the repository at this point in the history
  • Loading branch information
alirezaghey committed Dec 15, 2021
1 parent dba759e commit 8ef4869
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions info.toml
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,7 @@ path = "exercises/functions/functions5.rs"
mode = "compile"
hint = """
This is a really common error that can be fixed by removing one character.
It happens because Rust distinguishes between expressions and statements: expressions return
a value based on its operand, and statements simply return a () type which behaves just like `void` in C/C++ language.
It happens because Rust distinguishes between expressions and statements: expressions return a value based on their operand(s), and statements simply return a () type which behaves just like `void` in C/C++ language.
We want to return a value of `i32` type from the `square` function, but it is returning a `()` type...
They are not the same. There are two solutions:
1. Add a `return` ahead of `num * num;`
Expand Down

0 comments on commit 8ef4869

Please sign in to comment.