Skip to content

Commit ff1e4f7

Browse files
committed
more
1 parent 4dd1f09 commit ff1e4f7

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

src/signal.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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
/// ```

0 commit comments

Comments
 (0)