File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ the format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
1010- removed output ` Clone ` bound from ` SignalExt::filter_map `
1111
1212### added
13+ - ` SignalExt::take `
1314- ` track_caller ` derive for panicking ` LazyEntity ` methods
1415
1516### fixed
Original file line number Diff line number Diff line change @@ -1485,8 +1485,6 @@ pub trait SignalExt: Signal {
14851485 /// Outputs up to the first `count` values from this [`Signal`], and then terminates for all
14861486 /// subsequent frames.
14871487 ///
1488- /// After `count` values are emitted, this signal will stop propagating any further values.
1489- ///
14901488 /// If `count` is `0`, this will never propagate any values.
14911489 ///
14921490 /// # Example
@@ -1522,8 +1520,6 @@ pub trait SignalExt: Signal {
15221520
15231521 /// Outputs this [`Signal`]'s first value and then terminates for all subsequent frames.
15241522 ///
1525- /// After the first value is emitted, this signal will stop propagating any further values.
1526- ///
15271523 /// # Example
15281524 ///
15291525 /// ```
You can’t perform that action at this time.
0 commit comments