| Index: sdk/lib/collection/list.dart
|
| diff --git a/sdk/lib/collection/list.dart b/sdk/lib/collection/list.dart
|
| index ca2b39ee59b4299e36012c5dfb7ddf0065e969d7..d4dac6a4e9ccb9b436ff68cf1237de009b59c6ac 100644
|
| --- a/sdk/lib/collection/list.dart
|
| +++ b/sdk/lib/collection/list.dart
|
| @@ -20,7 +20,7 @@ Set _toStringVisiting = new HashSet.identity();
|
| * repeatedly increasing the length of a growable list is not efficient.
|
| * To avoid this, either override 'add' and 'addAll' to also forward directly
|
| * to the growable list, or, preferably, use `DelegatingList` from
|
| - * "package:collection_helpers/wrappers.dart" instead.
|
| + * "package:collection/wrappers.dart" instead.
|
| */
|
| abstract class ListBase<E> = Object with ListMixin<E>;
|
|
|
| @@ -40,7 +40,7 @@ abstract class ListBase<E> = Object with ListMixin<E>;
|
| * repeatedly increasing the length of a growable list is not efficient.
|
| * To avoid this, either override 'add' and 'addAll' to also forward directly
|
| * to the growable list, or, if possible, use `DelegatingList` from
|
| - * "package:collection_helpers/wrappers.dart" instead.
|
| + * "package:collection/wrappers.dart" instead.
|
| */
|
| abstract class ListMixin<E> implements List<E> {
|
|
|
|
|