| Index: dart/sdk/lib/core/list.dart
|
| ===================================================================
|
| --- dart/sdk/lib/core/list.dart (revision 18634)
|
| +++ dart/sdk/lib/core/list.dart (working copy)
|
| @@ -77,13 +77,9 @@
|
| void addAll(Iterable<E> iterable);
|
|
|
| /**
|
| - * Returns a reversed fixed-length view of this [List].
|
| - *
|
| - * The reversed list has elements in the opposite order of this list.
|
| - * It is backed by this list, but will stop working if this list
|
| - * becomes shorter than its current length.
|
| + * Returns an [Iterable] of the elements of this [List] in reverse order.
|
| */
|
| - List<E> get reversed;
|
| + Iterable<E> get reversed;
|
|
|
| /**
|
| * Sorts the list according to the order specified by the [compare] function.
|
|
|