Merge pull request #480 from pjona/patch-1

Removed double semicolon
This commit is contained in:
Emanuil Rusev 2017-03-08 23:21:03 +02:00 committed by GitHub
commit dfaf03639a
1 changed files with 1 additions and 1 deletions

View File

@ -448,7 +448,7 @@ class Parsedown
return $Block;
}
$Block['element']['text']['text'] .= "\n".$Line['body'];;
$Block['element']['text']['text'] .= "\n".$Line['body'];
return $Block;
}