1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-13 18:24:39 +02:00

ru-ru/rust-ru: minor fix in translation

This commit is contained in:
Vlad Frolov
2019-11-02 12:05:10 +02:00
committed by GitHub
parent a4006483fe
commit 816613fac9

View File

@@ -130,7 +130,7 @@ fn main() {
// 2. Типы // // 2. Типы //
////////////// //////////////
// Struct // Структура
struct Point { struct Point {
x: i32, x: i32,
y: i32, y: i32,
@@ -233,7 +233,7 @@ fn main() {
println!("{}", i); println!("{}", i);
} }
// Отрезки // Диапазоны
for i in 0u32..10 { for i in 0u32..10 {
print!("{} ", i); print!("{} ", i);
} }