1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-07-31 12:00:34 +02:00

Fix typo in rust-it

This commit is contained in:
Daniele Megna
2019-05-29 16:47:31 +02:00
committed by GitHub
parent d345ac88c3
commit 98534da524

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