Merge pull request #148 from ilmanzo/patch-1

typo
This commit is contained in:
Sunface 2022-03-07 19:37:42 +08:00 committed by GitHub
commit a78a1ba47e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -75,12 +75,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 ()")
}
```
@ -97,4 +97,4 @@ fn main() {
}
```
> You can find the solutions [here](https://github.com/sunface/rust-by-practice)(under the solutions path), but only use it when you need it
> You can find the solutions [here](https://github.com/sunface/rust-by-practice)(under the solutions path), but only use it when you need it