1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-27 03:01:03 +02:00

Clarify String definition (#2044)

Changed string definitions in string.md and strings.md files according
to discussion #2028
This commit is contained in:
Enes Aydın
2024-05-06 19:33:46 +03:00
committed by GitHub
parent b6343d0522
commit 40fce81e1c
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ minutes: 10
# String
[`String`][1] is the standard heap-allocated growable UTF-8 string buffer:
[`String`][1] is a growable UTF-8 encoded string:
```rust,editable
fn main() {