1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-23 09:16:44 +02:00

Day2: Afternoon - speaker note details and minor cosmetic changes. (#408)

* A few speaker notes in Day2: Afternoon and minor cosmetic changes.

* Do not test filesystem example code block.
This commit is contained in:
Marko Zagar
2023-02-16 03:19:25 +00:00
committed by GitHub
parent 93d61b2e7d
commit fe21b773e7
4 changed files with 49 additions and 4 deletions

View File

@ -27,8 +27,7 @@ fn main() {
<details>
* `len` returns the size of the `String` in bytes, not its length in characters.
* `chars` returns an iterator over the actual characters.
* `String` implements `Deref<Target = str>` which transparently gives it access to `str`'s methods.
* `len()` returns the size of the `String` in bytes, not its length in characters.
* `chars()` returns an iterator over the actual characters.
</details>