mirror of
https://github.com/dart-lang/sdk
synced 2024-11-05 18:22:09 +00:00
Fix typo in type parameter.
Review URL: https://codereview.chromium.org//14037002 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@21185 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
parent
2c5550d93c
commit
f8efe5b278
1 changed files with 2 additions and 2 deletions
|
@ -174,7 +174,7 @@ class _ObjectArray<E> implements List<E> {
|
|||
return this.length == 0;
|
||||
}
|
||||
|
||||
Iterable<T> get reversed => IterableMixinWorkaround.reversedList(this);
|
||||
Iterable<E> get reversed => IterableMixinWorkaround.reversedList(this);
|
||||
|
||||
void sort([int compare(E a, E b)]) {
|
||||
IterableMixinWorkaround.sortList(this, compare);
|
||||
|
@ -421,7 +421,7 @@ class _ImmutableArray<E> implements List<E> {
|
|||
return this.length == 0;
|
||||
}
|
||||
|
||||
Iterable<T> get reversed => IterableMixinWorkaround.reversedList(this);
|
||||
Iterable<E> get reversed => IterableMixinWorkaround.reversedList(this);
|
||||
|
||||
void sort([int compare(E a, E b)]) {
|
||||
throw new UnsupportedError(
|
||||
|
|
Loading…
Reference in a new issue