fix: correct drifted citations at commit f53b654
- traits.md: iterator.rs anchor L76→L42 (pub const trait Iterator) - traits.md: deref.rs anchor L60→L139 (pub const trait Deref) - error-handling.md: fix variant names CliError::Io→IoError, Parse→ParseError to match actual stdlib doc example at convert/mod.rs:557 - concurrency.md: mutex.rs and rwlock.rs moved to sync/poison/ subtree (3 link updates: mutex×2, rwlock×1)
This commit is contained in:
+2
-2
@@ -15,7 +15,7 @@ impls, 895 Iterator impls, 269 Display impls, 226 Default impls.
|
||||
|
||||
### Source:
|
||||
|
||||
[library/core/src/iter/traits/iterator.rs#L76](https://github.com/rust-lang/rust/blob/f53b654a8882fd5fc036c4ca7a4ff41ce32497a6/library/core/src/iter/traits/iterator.rs#L76)
|
||||
[library/core/src/iter/traits/iterator.rs#L42](https://github.com/rust-lang/rust/blob/f53b654a8882fd5fc036c4ca7a4ff41ce32497a6/library/core/src/iter/traits/iterator.rs#L42)
|
||||
|
||||
```rust
|
||||
// library/core/src/iter/traits/iterator.rs
|
||||
@@ -422,7 +422,7 @@ let first_10: Vec<u64> = Fibonacci { a: 0, b: 1 }.take(10).collect();
|
||||
|
||||
### Source:
|
||||
|
||||
[library/core/src/ops/deref.rs#L60](https://github.com/rust-lang/rust/blob/f53b654a8882fd5fc036c4ca7a4ff41ce32497a6/library/core/src/ops/deref.rs#L60)
|
||||
[library/core/src/ops/deref.rs#L139](https://github.com/rust-lang/rust/blob/f53b654a8882fd5fc036c4ca7a4ff41ce32497a6/library/core/src/ops/deref.rs#L139)
|
||||
|
||||
```rust
|
||||
pub trait Deref {
|
||||
|
||||
Reference in New Issue
Block a user