Skip to content

Commit

Permalink
Merge pull request #95 from dart-lang/const_fix
Browse files Browse the repository at this point in the history
Const fix.
  • Loading branch information
kevmoo committed May 12, 2015
2 parents 81840c4 + af955bd commit af49276
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/linter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class Group implements Comparable<Group> {
'https://www.dartlang.org/articles/style-guide/'));

/// List of builtin groups in presentation order.
static Iterable<Group> get builtin => [errors, style, pub];
static const Iterable<Group> builtin = const [errors, style, pub];

final String name;
final bool custom;
Expand Down

0 comments on commit af49276

Please sign in to comment.