Skip to content

Commit 2700dfb

Browse files
1 parent 736d543 commit 2700dfb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pkgs/async/lib/src/cancelable_operation.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class CancelableOperation<T> {
6969
///
7070
/// Once any of [operations] completes, its result is forwarded to the
7171
/// 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
7373
/// well.
7474
static CancelableOperation<T> race<T>(
7575
Iterable<CancelableOperation<T>> operations) {

pkgs/async/lib/src/result/result.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ import 'value.dart';
1717
/// Capturing a result (either a returned value or a thrown error) means
1818
/// converting it into a [Result] - either a [ValueResult] or an [ErrorResult].
1919
///
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].
2222
///
2323
/// A [Future] represents a potential result, one that might not have been
2424
/// computed yet, and a [Result] is always a completed and available result.

pkgs/async/lib/src/subscription_stream.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import 'delegate/stream_subscription.dart';
1414
/// then it is resumed and the events are passed on to the
1515
/// stream's new subscription.
1616
///
17-
/// This class assumes that is has control over the original subscription.
17+
/// This class assumes that it has control over the original subscription.
1818
/// If other code is accessing the subscription, results may be unpredictable.
1919
class SubscriptionStream<T> extends Stream<T> {
2020
/// The subscription providing the events for this stream.

0 commit comments

Comments
 (0)