1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-09 16:26:53 +02:00

[rust-it] fix struct name according below usage

This commit is contained in:
Daniele Megna
2019-05-31 16:02:41 +02:00
committed by GitHub
parent 15bc68c200
commit 8c7aff32cc

View File

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