From 98534da524ea0fa42f53d299546c6bf102c4a282 Mon Sep 17 00:00:00 2001 From: Daniele Megna Date: Wed, 29 May 2019 16:47:31 +0200 Subject: Fix typo in rust-it --- it-it/rust-it.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'it-it/rust-it.html.markdown') 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); -- cgit v1.2.3 From 8c7aff32cce615e6f5c407c1ef7632c4a64d211d Mon Sep 17 00:00:00 2001 From: Daniele Megna Date: Fri, 31 May 2019 16:02:41 +0200 Subject: [rust-it] fix struct name according below usage --- it-it/rust-it.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'it-it/rust-it.html.markdown') diff --git a/it-it/rust-it.html.markdown b/it-it/rust-it.html.markdown index 76fbf008..e4b7c33f 100644 --- a/it-it/rust-it.html.markdown +++ b/it-it/rust-it.html.markdown @@ -130,7 +130,7 @@ fn main() { ///////////// // Strutture - struct Point { + struct Punto { x: i32, y: i32, } -- cgit v1.2.3