diff options
author | Andre Polykanine <ap@oire.me> | 2019-06-05 01:24:09 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-05 01:24:09 +0300 |
commit | eaa5e0f1c237a77dce04dea922ae7c0870557d61 (patch) | |
tree | de9a1f195df13818cdacd634c5f2479ea3ec8020 | |
parent | b261398c9f91733b64423cc58f719f6328385daf (diff) | |
parent | 8c7aff32cce615e6f5c407c1ef7632c4a64d211d (diff) |
Merge pull request #3541 from danielemegna/rustit-fix-struct-name
[rust/it] fix struct name according below usage
-rw-r--r-- | it-it/rust-it.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it-it/rust-it.html.markdown b/it-it/rust-it.html.markdown index 76fbf008..e4b7c33f 100644 --- a/it-it/rust-it.html.markdown +++ b/it-it/rust-it.html.markdown @@ -130,7 +130,7 @@ fn main() { ///////////// // Strutture - struct Point { + struct Punto { x: i32, y: i32, } |