Skip to content

Commit b7f9502

Browse files
committed
minor fix
1 parent cdef129 commit b7f9502

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Document.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function __construct(Extractor $extractor)
2121

2222
$html = (string) $extractor->getResponse()->getBody();
2323
$html = str_replace('<br>', "\n<br>", $html);
24-
$html = str_replace('<br ', "\n <br ", $html);
24+
$html = str_replace('<br ', "\n<br ", $html);
2525

2626
$this->document = !empty($html) ? Parser::parse($html) : new DOMDocument();
2727
$this->initXPath();

0 commit comments

Comments
 (0)