diff options
| author | Carlo Milanesi <carlo.milanesi@libero.it> | 2016-06-06 01:43:39 +0200 | 
|---|---|---|
| committer | Carlo Milanesi <carlo.milanesi@libero.it> | 2016-06-06 01:43:39 +0200 | 
| commit | 4207b753bc31f1050b394a87cbe1e3c0a3fa1914 (patch) | |
| tree | 1f5850253c715407c86d6b3e1537fe2fdd52ca3b /it-it/rust-it.html.markdown | |
| parent | 39b02cf5ab38bc6ccbd66e03740a89fabc41952f (diff) | |
Small corrections to translation
Diffstat (limited to 'it-it/rust-it.html.markdown')
| -rw-r--r-- | it-it/rust-it.html.markdown | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/it-it/rust-it.html.markdown b/it-it/rust-it.html.markdown index 39dbb944..dd5005f2 100644 --- a/it-it/rust-it.html.markdown +++ b/it-it/rust-it.html.markdown @@ -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.");      } | 
