Skip to content

Commit

Permalink
Add missing type annotation.
Browse files Browse the repository at this point in the history
  • Loading branch information
dikmax committed Jan 23, 2016
1 parent 634ae87 commit cef60a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/markdown_parser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2209,7 +2209,7 @@ class CommonMarkParser {
static final Parser<List<String>> _paraOrSetextParser =
(_paraFirstLineParser.notAhead > anyLine) +
manySimple(_paraEndParser.notAhead > anyLine) ^
(a, List b) {
(String a, List<String> b) {
b.insert(0, a);
return b;
};
Expand Down

0 comments on commit cef60a0

Please sign in to comment.