Skip to content

Commit 0334fea

Browse files
sgrekhovCommit Queue
authored and
Commit Queue
committed
[doc/async] Change StreamController.broadcast() doc according to the current behavior
Bug: #29403 Change-Id: I9ef53b3c4e039bdc84d4cdfa9e306efb6eb0ffba CoreLibraryReviewExempt: Documentation-only change Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/340860 Reviewed-by: Lasse Nielsen <[email protected]> Reviewed-by: Alexander Thomas <[email protected]> Commit-Queue: Alexander Thomas <[email protected]>
1 parent 911f7ed commit 0334fea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sdk/lib/async/stream_controller.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ abstract interface class StreamController<T> implements StreamSink<T> {
134134
/// listeners at the time when [add], [addError] or [close] is called.
135135
/// It is not allowed to call `add`, `addError`, or `close` before a previous
136136
/// call has returned. The controller does not have any internal queue of
137-
/// events, and if there are no listeners at the time the event is added,
138-
/// it will just be dropped, or, if it is an error, be reported as uncaught.
137+
/// events, and if there are no listeners at the time the event or error is
138+
/// added, it will just be dropped.
139139
///
140140
/// Each listener subscription is handled independently,
141141
/// and if one pauses, only the pausing listener is affected.

0 commit comments

Comments
 (0)