Merge branch 'regexp'
diff --git a/pkgs/markdown/lib/src/block_parser.dart b/pkgs/markdown/lib/src/block_parser.dart
index 5bdc111..67e4bbd 100644
--- a/pkgs/markdown/lib/src/block_parser.dart
+++ b/pkgs/markdown/lib/src/block_parser.dart
@@ -312,7 +312,7 @@
   }
 }
 
-/// Parses inline HTML at the block level. This differs from other markdown
+/// Parses inline HTML at the block level. This differs from other Markdown
 /// implementations in several ways:
 ///
 /// 1.  This one is way way WAY simpler.
@@ -320,8 +320,8 @@
 ///     start a paragraph with `<em>`, it will not wrap it in a `<p>` for you.
 ///     As soon as it sees something like HTML, it stops mucking with it until
 ///     it hits the next block.
-/// 3.  Absolutely no HTML parsing or validation is done. We're a markdown
-///     parser not an HTML parser!
+/// 3.  Absolutely no HTML parsing or validation is done. We're a Markdown
+///     parser, not an HTML parser!
 class BlockHtmlSyntax extends BlockSyntax {
   RegExp get pattern => _htmlPattern;
 
@@ -406,7 +406,8 @@
     // * one
     // * two
     //
-    // Then it will insert the conents of the lines directly in the <li>, like:
+    // Then it will insert the contents of the lines directly in the <li>, like:
+    //
     // <ul>
     //   <li>one</li>
     //   <li>two</li>
@@ -442,7 +443,7 @@
     for (var i = 0; i < items.length; i++) {
       for (var j = items[i].lines.length - 1; j > 0; j--) {
         if (_emptyPattern.firstMatch(items[i].lines[j]) != null) {
-          // Found an empty line. Item and one after it are blocks.
+          // Found an empty line. This item and the one after it are blocks.
           if (i < items.length - 1) {
             items[i].forceBlock = true;
             items[i + 1].forceBlock = true;