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

Merge pull request #3541 from danielemegna/rustit-fix-struct-name

[rust/it] fix struct name according below usage
This commit is contained in:
Andre Polykanine
2019-06-05 01:24:09 +03:00
committed by GitHub

View File

@@ -130,7 +130,7 @@ fn main() {
///////////// /////////////
// Strutture // Strutture
struct Point { struct Punto {
x: i32, x: i32,
y: i32, y: i32,
} }