diff options
author | Daniele Megna <danielemegna@users.noreply.github.com> | 2019-05-29 16:47:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-29 16:47:31 +0200 |
commit | 98534da524ea0fa42f53d299546c6bf102c4a282 (patch) | |
tree | 042b263d254179e42a8f5eaccdd603270654bd3c /it-it/rust-it.html.markdown | |
parent | d345ac88c3f99e9c0e655bc6c353abd3d56d9b3e (diff) |
Fix typo in rust-it
Diffstat (limited to 'it-it/rust-it.html.markdown')
-rw-r--r-- | it-it/rust-it.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it-it/rust-it.html.markdown b/it-it/rust-it.html.markdown index 6b379f93..76fbf008 100644 --- a/it-it/rust-it.html.markdown +++ b/it-it/rust-it.html.markdown @@ -137,7 +137,7 @@ fn main() { let origine: Punto = Punto { x: 0, y: 0 }; - // Ana struct con campi senza nome, chiamata ‘tuple struct’ + // Una struct con campi senza nome, chiamata ‘tuple struct’ struct Punto2(i32, i32); let origine2 = Punto2(0, 0); |