Using the right conjunction

Closes #35665
https://github.com/dart-lang/sdk/pull/35665

GitOrigin-RevId: e0a43a5954330b90747928a7dc1a063c7fe15ab3
Change-Id: Ia7644a9eddabcb8f6d47d36a21750b967af5cf3c
Reviewed-on: https://dart-review.googlesource.com/c/89561
Reviewed-by: Vyacheslav Egorov <vegorov@google.com>
Commit-Queue: Vyacheslav Egorov <vegorov@google.com>
This commit is contained in:
wtoalabi 2019-01-15 13:12:45 +00:00 committed by commit-bot@chromium.org
parent d9944433af
commit c6ab52c9f9

View file

@ -607,7 +607,7 @@ abstract class List<E> implements EfficientLengthIterable<E> {
* Returns an [Iterable] that iterates over the objects in the range
* [start] inclusive to [end] exclusive.
*
* The provide range, given by [start] and [end], must be valid at the time
* The provided range, given by [start] and [end], must be valid at the time
* of the call.
*
* A range from [start] to [end] is valid if `0 <= start <= end <= len`, where
@ -636,7 +636,7 @@ abstract class List<E> implements EfficientLengthIterable<E> {
* list1.setRange(1, 3, list2, 3);
* list1.join(', '); // '1, 8, 9, 4'
*
* The provide range, given by [start] and [end], must be valid.
* The provided range, given by [start] and [end], must be valid.
* A range from [start] to [end] is valid if `0 <= start <= end <= len`, where
* `len` is this list's `length`. The range starts at `start` and has length
* `end - start`. An empty range (with `end == start`) is valid.
@ -656,7 +656,7 @@ abstract class List<E> implements EfficientLengthIterable<E> {
/**
* Removes the objects in the range [start] inclusive to [end] exclusive.
*
* The provide range, given by [start] and [end], must be valid.
* The provided range, given by [start] and [end], must be valid.
* A range from [start] to [end] is valid if `0 <= start <= end <= len`, where
* `len` is this list's `length`. The range starts at `start` and has length
* `end - start`. An empty range (with `end == start`) is valid.
@ -670,7 +670,7 @@ abstract class List<E> implements EfficientLengthIterable<E> {
* Sets the objects in the range [start] inclusive to [end] exclusive
* to the given [fillValue].
*
* The provide range, given by [start] and [end], must be valid.
* The provided range, given by [start] and [end], must be valid.
* A range from [start] to [end] is valid if `0 <= start <= end <= len`, where
* `len` is this list's `length`. The range starts at `start` and has length
* `end - start`. An empty range (with `end == start`) is valid.
@ -685,7 +685,7 @@ abstract class List<E> implements EfficientLengthIterable<E> {
* list.replaceRange(1, 4, [6, 7]);
* list.join(', '); // '1, 6, 7, 5'
*
* The provide range, given by [start] and [end], must be valid.
* The provided range, given by [start] and [end], must be valid.
* A range from [start] to [end] is valid if `0 <= start <= end <= len`, where
* `len` is this list's `length`. The range starts at `start` and has length
* `end - start`. An empty range (with `end == start`) is valid.