Skip to content

Commit e0a1653

Browse files
committed
Fixed Strings example in README
Added the missing semicolon in the README example, just to avoid any confusion.
1 parent e570797 commit e0a1653

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Loading a string directly, with out the checks in `load()` is also easely done.
9999
use PHPHtmlParser\Dom;
100100

101101
$dom = new Dom;
102-
$dom->loadStr('<html>String</html>', [])
102+
$dom->loadStr('<html>String</html>', []);
103103
$html = $dom->outerHtml;
104104
```
105105

0 commit comments

Comments
 (0)