| Index: pkg/dartdoc/ast.dart
|
| diff --git a/pkg/dartdoc/ast.dart b/pkg/dartdoc/ast.dart
|
| index e158ff983759de6c3945b57a93ab5676d1bf841d..b3d163938405585d8e9171cbeef411626eb877f3 100644
|
| --- a/pkg/dartdoc/ast.dart
|
| +++ b/pkg/dartdoc/ast.dart
|
| @@ -29,7 +29,7 @@ class Element implements Node {
|
| : children = [new Text(text)],
|
| attributes = <String, String>{};
|
|
|
| - bool get isEmpty() => children == null;
|
| + bool get isEmpty => children == null;
|
|
|
| void accept(NodeVisitor visitor) {
|
| if (visitor.visitElementBefore(this)) {
|
|
|