Merge pull request #96 from mercuryseries/patch-1

Fix small typo
This commit is contained in:
Ryan Weaver 2019-01-03 13:47:10 -06:00 committed by GitHub
commit c055def2e6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,7 +40,7 @@ public function __construct(MarkdownParserInterface $parser)
public function someMethod()
{
$html = $parser->transformMarkdown($text);
$html = $this->parser->transformMarkdown($text);
}
```