1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00
This commit is contained in:
Aidan Woods 2021-10-13 19:55:23 +01:00
parent b73fe2e9ec
commit 8ce88c1b36
No known key found for this signature in database
GPG Key ID: 9A6A8EFAA512BBB9

View File

@ -78,7 +78,7 @@ final class Text implements TransformableRenderable
$lastEndPos = $endPos;
}
if (\strlen($this->text) -1 !== $lastEndPos) {
if (\strlen($this->text) !== $lastEndPos) {
$Container = $Container->adding(
new Text(\substr($this->text, $lastEndPos))
);