diff options
author | Vlad Frolov <frolvlad@gmail.com> | 2019-11-02 12:05:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-02 12:05:10 +0200 |
commit | 816613fac9d863e7645cb71ca73ac8ce973aae93 (patch) | |
tree | 0efe7fa5048efedb899a5bb24d7665158bfec32a | |
parent | a4006483feb4c80cbac68856eadbc83c694f7050 (diff) |
ru-ru/rust-ru: minor fix in translation
-rw-r--r-- | ru-ru/rust-ru.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ru-ru/rust-ru.html.markdown b/ru-ru/rust-ru.html.markdown index 7bd2809a..3211fb61 100644 --- a/ru-ru/rust-ru.html.markdown +++ b/ru-ru/rust-ru.html.markdown @@ -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); } |