summaryrefslogtreecommitdiffhomepage
path: root/it-it/rust-it.html.markdown
diff options
context:
space:
mode:
authorDaniele Megna <danielemegna@users.noreply.github.com>2019-05-29 16:47:31 +0200
committerGitHub <noreply@github.com>2019-05-29 16:47:31 +0200
commit98534da524ea0fa42f53d299546c6bf102c4a282 (patch)
tree042b263d254179e42a8f5eaccdd603270654bd3c /it-it/rust-it.html.markdown
parentd345ac88c3f99e9c0e655bc6c353abd3d56d9b3e (diff)
Fix typo in rust-it
Diffstat (limited to 'it-it/rust-it.html.markdown')
-rw-r--r--it-it/rust-it.html.markdown2
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);