mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-08-05 22:37:42 +02:00
Fix typo in rust-it
This commit is contained in:
@@ -137,7 +137,7 @@ fn main() {
|
|||||||
|
|
||||||
let origine: Punto = Punto { x: 0, y: 0 };
|
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);
|
struct Punto2(i32, i32);
|
||||||
|
|
||||||
let origine2 = Punto2(0, 0);
|
let origine2 = Punto2(0, 0);
|
||||||
|
Reference in New Issue
Block a user