File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ class CancelableOperation<T> {
69
69
///
70
70
/// Once any of [operations] completes, its result is forwarded to the
71
71
/// new [CancelableOperation] and the rest are cancelled. If the
72
- /// bew operation is cancelled, all the [operations] are cancelled as
72
+ /// new operation is cancelled, all the [operations] are cancelled as
73
73
/// well.
74
74
static CancelableOperation <T > race <T >(
75
75
Iterable <CancelableOperation <T >> operations) {
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ import 'value.dart';
17
17
/// Capturing a result (either a returned value or a thrown error) means
18
18
/// converting it into a [Result] - either a [ValueResult] or an [ErrorResult] .
19
19
///
20
- /// This value can release itself by writing itself either to a [EventSink] or a
21
- /// [Completer] , or by becoming a [Future] .
20
+ /// This value can release itself by writing itself either to an [EventSink] or
21
+ /// a [Completer] , or by becoming a [Future] .
22
22
///
23
23
/// A [Future] represents a potential result, one that might not have been
24
24
/// computed yet, and a [Result] is always a completed and available result.
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import 'delegate/stream_subscription.dart';
14
14
/// then it is resumed and the events are passed on to the
15
15
/// stream's new subscription.
16
16
///
17
- /// This class assumes that is has control over the original subscription.
17
+ /// This class assumes that it has control over the original subscription.
18
18
/// If other code is accessing the subscription, results may be unpredictable.
19
19
class SubscriptionStream <T > extends Stream <T > {
20
20
/// The subscription providing the events for this stream.
You can’t perform that action at this time.
0 commit comments