Fix typos

This commit is contained in:
Aidan Woods 2018-11-11 18:31:58 +00:00
parent f8aa618f3d
commit 267256cbb8
No known key found for this signature in database
GPG Key ID: 9A6A8EFAA512BBB9
3 changed files with 3 additions and 3 deletions

View File

@ -18,6 +18,6 @@ final class Text implements Renderable
public function getHtml(): string
{
return Escaper::htmlElementValue($text);
return Escaper::htmlElementValue($this->text);
}
}

View File

@ -1,6 +1,6 @@
<?php declare(strict_types=1);
namespace Erusev\Parsedown\Html\Sanisisation;
namespace Erusev\Parsedown\Html\Sanitisation;
final class CharacterFilter
{

View File

@ -1,6 +1,6 @@
<?php declare(strict_types=1);
namespace Erusev\Parsedown\Html\Sanisisation;
namespace Erusev\Parsedown\Html\Sanitisation;
final class Escaper
{