1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-01-17 13:38:38 +01:00

Small corrections to translation

This commit is contained in:
Carlo Milanesi 2016-06-06 01:43:39 +02:00
parent 39b02cf5ab
commit 4207b753bc

View File

@ -226,7 +226,7 @@ fn main() {
// 4. Flusso di controllo (Control flow) //
///////////////////////////////////////////
// cicli/iterazione con `for`
// Ciclo/iterazione con `for`
let array = [1, 2, 3];
for i in array.iter() {
println!("{}", i);
@ -237,7 +237,7 @@ fn main() {
print!("{} ", i);
}
println!("");
// prints `0 1 2 3 4 5 6 7 8 9 `
// Stampa `0 1 2 3 4 5 6 7 8 9 `
// `if`
if 1 == 1 {
@ -253,7 +253,7 @@ fn main() {
"male"
};
// ciclo `while`
// Ciclo `while`
while 1 == 1 {
println!("L'universo sta funzionando regolarmente.");
}