| Index: packages/charted/lib/selection/selection_scope.dart
|
| diff --git a/packages/charted/lib/selection/selection_scope.dart b/packages/charted/lib/selection/selection_scope.dart
|
| index 3543f92cf021ccb0fd25f27ebe0878d35c30c7db..38d43f25948cc0e44809089aec76beb80790fb76 100644
|
| --- a/packages/charted/lib/selection/selection_scope.dart
|
| +++ b/packages/charted/lib/selection/selection_scope.dart
|
| @@ -24,7 +24,7 @@ class SelectionScope {
|
| * [selector] as the root.
|
| */
|
| SelectionScope.selector(String selector) {
|
| - if (selector == null || selector.isEmpty ){
|
| + if (selector == null || selector.isEmpty) {
|
| throw new ArgumentError('Selector cannot be empty');
|
| }
|
| _root = document.querySelector(selector);
|
| @@ -74,7 +74,7 @@ class SelectionScope {
|
| * elements in it.
|
| */
|
| Selection selectAll(String selector) =>
|
| - new _SelectionImpl.all(selector:selector, scope:this);
|
| + new _SelectionImpl.all(selector: selector, scope: this);
|
|
|
| /**
|
| * Creates a new [Selection] containing [elements]. Assumes that
|
|
|