From bce303259f45bca1e04c470c8c3959dd59da2e3d Mon Sep 17 00:00:00 2001 From: Michael-Lai fx Date: Thu, 11 Oct 2018 20:02:19 +0800 Subject: [PATCH] Update functions5.rs --- functions/functions5.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/functions5.rs b/functions/functions5.rs index b074d726..a7845e9a 100644 --- a/functions/functions5.rs +++ b/functions/functions5.rs @@ -40,7 +40,7 @@ fn square(num: i32) -> i32 { // 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 retun a `()` type which just like `void` in C/C++ language. +// a value based on its operand, and statements simply retun 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 solusions: // 1. Add a `return` ahead of `num * num;`