fix some typos

Signed-off-by: cui fliter <imcusg@gmail.com>
This commit is contained in:
cui fliter
2022-07-11 00:21:52 +08:00
parent 68ab163a65
commit 2eeb2124ef
18 changed files with 23 additions and 23 deletions

View File

@@ -251,7 +251,7 @@ fn main() {
### Iterator adaptors
Methods allowing you to change one iterator into another iterator are known as *iterator adaptors*. You can chain multiple iterator adaptors to perform complex actions in a readable way.
But beacuse **all iterators are lazy**, you have to call one of the consuming adapers to get results from calls to iterator adapters.
But because **all iterators are lazy**, you have to call one of the consuming adapers to get results from calls to iterator adapters.
10、🌟🌟
```rust,editable