Merge pull request #3756 from frol/patch-1

[rust/ru-ru] minor fix in translation
This commit is contained in:
Andre Polykanine 2019-11-02 20:16:53 +02:00 committed by GitHub
commit d2370c50bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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