| Index: samples/markdown/html_renderer.dart
|
| diff --git a/samples/markdown/html_renderer.dart b/samples/markdown/html_renderer.dart
|
| index 4f0aba902c50c7eab364e31ac8c6d1a204593f08..520f978fb94729f6ed0c9d1c8ed9f8b7c6e21de5 100644
|
| --- a/samples/markdown/html_renderer.dart
|
| +++ b/samples/markdown/html_renderer.dart
|
| @@ -27,7 +27,7 @@ class HtmlRenderer implements NodeVisitor {
|
|
|
| bool visitElementBefore(Element element) {
|
| // Hackish. Separate block-level elements with newlines.
|
| - if (!buffer.isEmpty() &&
|
| + if (!buffer.isEmpty &&
|
| _BLOCK_TAGS.firstMatch(element.tag) != null) {
|
| buffer.add('\n');
|
| }
|
|
|