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
commit 15bc68c200
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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