| Index: sdk/lib/collection/iterable.dart
|
| diff --git a/sdk/lib/collection/iterable.dart b/sdk/lib/collection/iterable.dart
|
| index 14af73c69e42cee5f2898609fd3c964f1ef2ed40..855659510d49143d65a8a4cfcef1e6732cbb7a08 100644
|
| --- a/sdk/lib/collection/iterable.dart
|
| +++ b/sdk/lib/collection/iterable.dart
|
| @@ -411,10 +411,10 @@ void _iterablePartsToStrings(Iterable iterable, List parts) {
|
| *
|
| * Methods that worry about reading the length of an `Iterable` because it
|
| * may be inefficient or may trigger side-effects, or may even never complete,
|
| - * can first check if the iterable `is EfficientLengthIterableIterable`,
|
| + * can first check if the iterable `is EfficientLengthIterable`,
|
| * and if so, use [length] without those concerns.
|
| *
|
| - * The `EfficientLengthIterable` type should never be used as an API type
|
| + * The `EfficientLengthIterable` type should never be used as a type
|
| * assertion - neither as argument type or return type of a function.
|
| * Always use [Iterable] for the type and just document the performance if it
|
| * is relevant. This avoids needlessly restricting the values that can be used.
|
|
|