Skip to content

Commit

Permalink
Translate ch08-02-strings.md via GitLocalize
Browse files Browse the repository at this point in the history
  • Loading branch information
jashka34 authored and gitlocalize-app[bot] committed Oct 12, 2023
1 parent c805f70 commit 99a097f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rustbook-ru/src/ch08-02-strings.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
{{#rustdoc_include ../listings/ch08-common-collections/listing-08-15/src/main.rs:here}}
```

<span class="caption">Листинг 8-15: Добавление среза строки к <code>String</code> используя метод <code>push_str</code></span>
<span class="caption">Listing 8-15: Appending a string slice to a <code>String</code> using the <code>push_str</code> method</span>

После этих двух строк кода `s` будет содержать `foobar`. Метод `push_str` принимает строковый срез, потому что мы не всегда хотим владеть входным параметром. Например, код в листинге 8-16 показывает вариант, когда будет не желательно поведение, при котором мы не сможем использовать `s2` после его добавления к содержимому значения переменной `s1`.

Expand Down

0 comments on commit 99a097f

Please sign in to comment.