remove non ascii whitespaces
This commit is contained in:
parent
598a10bc28
commit
5a6d6c4d13
117 changed files with 1928 additions and 1928 deletions
|
@ -79,7 +79,7 @@ Conditionals like `if` and `match` can be used, while `match` can do more powerf
|
|||
let age = 20;
|
||||
if age > 18 {
|
||||
println!("Adult");
|
||||
} else if age == 18 {
|
||||
} else if age == 18 {
|
||||
println!("Exactly 18");
|
||||
} else {
|
||||
println!("Minor");
|
||||
|
@ -156,7 +156,7 @@ struct Person {
|
|||
|
||||
impl Person {
|
||||
fn new(first_name: &str) -> Self {
|
||||
Self {
|
||||
Self {
|
||||
first_name: first_name.to_string(),
|
||||
age: 0
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue