| Index: sdk/lib/core/list.dart
|
| diff --git a/sdk/lib/core/list.dart b/sdk/lib/core/list.dart
|
| index ca0a449777e307c59483e8c81dbb3da7111c7dfd..e412b3e3ba1d809b6e186633c2998e02bc8c5545 100644
|
| --- a/sdk/lib/core/list.dart
|
| +++ b/sdk/lib/core/list.dart
|
| @@ -117,7 +117,7 @@ abstract class List<E> implements EfficientLengthIterable<E> {
|
| * This constructor returns a growable list when [growable] is true;
|
| * otherwise, it returns a fixed-length list.
|
| */
|
| - external factory List.from(Iterable elements, { bool growable: true });
|
| + external factory List.from(Iterable elements, {bool growable: true});
|
|
|
| /**
|
| * Generates a list of values.
|
| @@ -131,7 +131,7 @@ abstract class List<E> implements EfficientLengthIterable<E> {
|
| * The created list is fixed-length unless [growable] is true.
|
| */
|
| factory List.generate(int length, E generator(int index),
|
| - { bool growable: true }) {
|
| + {bool growable: true}) {
|
| List<E> result;
|
| if (growable) {
|
| result = <E>[]..length = length;
|
|
|