1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-11 09:14:39 +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
struct Point {
struct Punto {
x: i32,
y: i32,
}