Skip to content
This repository was archived by the owner on Oct 17, 2024. It is now read-only.

Commit e83d054

Browse files
Fix typo (#262)
1 parent 9924570 commit e83d054

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lib/src/cancelable_operation.dart

Lines changed: 1 addition & 1 deletion
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) {

lib/src/result/result.dart

Lines changed: 2 additions & 2 deletions
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.

lib/src/subscription_stream.dart

Lines changed: 1 addition & 1 deletion
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)