Skip to content

Commit

Permalink
Fix several typos (#1251)
Browse files Browse the repository at this point in the history
  • Loading branch information
DarthGandalf authored Sep 29, 2023
1 parent 86cde61 commit 4e768e2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions po/ru.po
Original file line number Diff line number Diff line change
Expand Up @@ -4299,12 +4299,12 @@ msgstr ""

#: src/control-flow/for-expressions.md:21
msgid "You can use `break` and `continue` here as usual."
msgstr "Здесь также можно изпользовать выражения `break` и `continue`."
msgstr "Здесь также можно использовать выражения `break` и `continue`."

#: src/control-flow/for-expressions.md:25
msgid "Index iteration is not a special syntax in Rust for just that case."
msgstr ""
"В языке Rust нет специального синтакса для итерации по идексам контейнеров."
"В языке Rust нет специального синтаксиса для итерации по индексам контейнеров."

#: src/control-flow/for-expressions.md:26
msgid "`(0..10)` is a range that implements an `Iterator` trait. "
Expand Down Expand Up @@ -5338,10 +5338,10 @@ msgid ""
"it will return `None`. The `while let` lets us keep iterating through all "
"items."
msgstr ""
"Здесь `next()`-итератор, возвращаемого выражением `v.into_iter()`, "
"Здесь `next()`-итератор, возвращённый выражением `v.into_iter()`, "
"возвращает объект типа `Option<i32>`.\n"
"Сначала будет возращаться `Some(x)` для каждого элемента вектора,\n"
"после чего `next()` вернет `None`. Выражение `while let` позволяет нам "
"после чего `next()` вернёт `None`. Выражение `while let` позволяет нам "
"лаконично\n"
"проитерировать все значения вектора."

Expand All @@ -5360,7 +5360,7 @@ msgid ""
"The `while let` provides syntactic sugar for the above scenario."
msgstr ""
"Этот цикл можно переписать как бесконечный цикл, который прерывается, когда "
"результат `iter.next()` перестает соответствовать `Some(x)`. Выражение "
"результат `iter.next()` перестаёт соответствовать `Some(x)`. Выражение "
"`while let` позволяет описать ту же самую логику более лаконично."

#: src/control-flow/match-expressions.md:3
Expand Down

0 comments on commit 4e768e2

Please sign in to comment.