summaryrefslogtreecommitdiffhomepage
path: root/it-it/rust-it.html.markdown
diff options
context:
space:
mode:
authorAndre Polykanine <ap@oire.me>2019-05-31 01:29:15 +0300
committerGitHub <noreply@github.com>2019-05-31 01:29:15 +0300
commit15bc68c200f21e84d37a814826a73186e91b49e8 (patch)
tree042b263d254179e42a8f5eaccdd603270654bd3c /it-it/rust-it.html.markdown
parentd345ac88c3f99e9c0e655bc6c353abd3d56d9b3e (diff)
parent98534da524ea0fa42f53d299546c6bf102c4a282 (diff)
Merge pull request #3540 from danielemegna/rustit-fixtypo
[rust/it] Fix typo
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);