Index: pkg/dartdoc/lib/src/markdown/block_parser.dart |
diff --git a/pkg/dartdoc/lib/src/markdown/block_parser.dart b/pkg/dartdoc/lib/src/markdown/block_parser.dart |
index 98a09453ec065f169f099e11092acecfbf04948c..79d9e69f13bf23b24e8a0d94da2f6b30503b8b25 100644 |
--- a/pkg/dartdoc/lib/src/markdown/block_parser.dart |
+++ b/pkg/dartdoc/lib/src/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(); |