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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);
} }