Index: samples/markdown/block_parser.dart |
diff --git a/samples/markdown/block_parser.dart b/samples/markdown/block_parser.dart |
index ce274a61ca97fed0d459fd40e23a695e184d0d91..e136db2a1835ab1ebeb17f57ed8765418bf9e5ce 100644 |
--- a/samples/markdown/block_parser.dart |
+++ b/samples/markdown/block_parser.dart |
@@ -300,7 +300,7 @@ class ListSyntax extends BlockSyntax { |
// Anything else is paragraph text or other stuff that can be in a list |
// item. However, if the previous item is a blank line, this means we're |
// done with the list and are starting a new top-level paragraph. |
- if ((childLines.length > 0) && (childLines.last() == '')) break; |
+ if ((childLines.length > 0) && (childLines.last == '')) break; |
childLines.add(parser.current); |
} |
parser.advance(); |