remove non ascii whitespaces

This commit is contained in:
JMARyA 2024-01-17 09:44:04 +01:00
parent 598a10bc28
commit 5a6d6c4d13
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
117 changed files with 1928 additions and 1928 deletions

View file

@ -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
}