Index: samples/markdown/ast.dart |
diff --git a/samples/markdown/ast.dart b/samples/markdown/ast.dart |
index 361c7541b4f0dcbad5844eaec5638ca7a344590a..bdb18332cf0f986d0dadc8df98f1b85f0c9ad9d6 100644 |
--- a/samples/markdown/ast.dart |
+++ b/samples/markdown/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)) { |