Skip to content

Commit ae45a17

Browse files
committed
Update broken link fragments found in documentation
1 parent c88bf72 commit ae45a17

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

library/core/src/option.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@
465465
//! [`Option`] of a collection of each contained value of the original
466466
//! [`Option`] values, or [`None`] if any of the elements was [`None`].
467467
//!
468-
//! [impl-FromIterator]: Option#impl-FromIterator%3COption%3CA%3E%3E-for-Option%3CV%3E
468+
//! [impl-FromIterator]: Option#impl-FromIterator%3COption%3CT%3E%3E-for-Option%3CV%3E
469469
//!
470470
//! ```
471471
//! let v = [Some(2), Some(4), None, Some(8)];

library/core/src/result.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@
511511
//! [`Result`] of a collection of each contained value of the original
512512
//! [`Result`] values, or [`Err`] if any of the elements was [`Err`].
513513
//!
514-
//! [impl-FromIterator]: Result#impl-FromIterator%3CResult%3CA,+E%3E%3E-for-Result%3CV,+E%3E
514+
//! [impl-FromIterator]: Result#impl-FromIterator%3CResult%3CT,+E%3E%3E-for-Result%3CV,+E%3E
515515
//!
516516
//! ```
517517
//! let v = [Ok(2), Ok(4), Err("err!"), Ok(8)];

0 commit comments

Comments
 (0)