summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNino <[email protected]>2018-04-24 09:15:45 +0700
committerGitHub <[email protected]>2018-04-24 09:15:45 +0700
commit2e972d4e0f63b141cae4810ede23eec6734c22f1 (patch)
treea6d9cda85695068b943c61538e2f48b35715a3f9
parent992a11260de32a036c932a8ba61bcc8a46c34dd1 (diff)
Adds a missing import
The example implies the use of `\ParseException`, but I think the author meant `andreskrey\Readability\ParseException`
-rw-r--r--README.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/README.md b/README.md
index 19b3dc3..67de111 100644
--- a/README.md
+++ b/README.md
@@ -26,6 +26,7 @@ Then, create a Readability class and pass a Configuration class, feed the `parse
```php
use andreskrey\Readability\Readability;
use andreskrey\Readability\Configuration;
+use andreskrey\Readability\ParseException;
$readability = new Readability(new Configuration());