1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-06 14:56:54 +02:00

Merge pull request #3540 from danielemegna/rustit-fixtypo

[rust/it] Fix typo
This commit is contained in:
Andre Polykanine
2019-05-31 01:29:15 +03:00
committed by GitHub

View File

@@ -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);