Skip to content

Commit

Permalink
Rollup merge of #136566 - hkBst:patch-1, r=scottmcm
Browse files Browse the repository at this point in the history
Fix link in from_fn.rs
  • Loading branch information
workingjubilee authored Feb 6, 2025
2 parents 854a710 + 6770d3d commit 8964e70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/core/src/iter/sources/from_fn.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use crate::fmt;

/// Creates an iterator with the provided closure
/// `F: FnMut() -> Option<T>` as its `[next](Iterator::next)` method.
/// `F: FnMut() -> Option<T>` as its [`next`](Iterator::next) method.
///
/// The iterator will yield the `T`s returned from the closure.
///
Expand Down

0 comments on commit 8964e70

Please sign in to comment.