diff --git a/docs/content/01_Getting_Started/02_Quick_Start.md b/docs/content/01_Getting_Started/02_Quick_Start.md index 55e2879..a61b262 100644 --- a/docs/content/01_Getting_Started/02_Quick_Start.md +++ b/docs/content/01_Getting_Started/02_Quick_Start.md @@ -11,13 +11,13 @@ $ composer require tigitz/php-spellchecker ## Using the Spellchecker directly -You can check misspellings directly from a `PhpSpellcheck\SpellChecker` class and process them on your own. +You can check misspellings directly from a `PhpSpellcheck\Spellchecker` class and process them on your own. In this example we use the popular [Aspell](../03_Spellcheckers/01_Aspell.md) spellchecker. ```php Install
$ composer require tigitz/php-spellchecker
You can check misspellings directly from a PhpSpellcheck\SpellChecker
class and process them on your own.
You can check misspellings directly from a PhpSpellcheck\Spellchecker
class and process them on your own.
In this example we use the popular Aspell spellchecker.
<?php
-use PhpSpellcheck\SpellChecker\Aspell;
+use PhpSpellcheck\Spellchecker\Aspell;
// if you made the default aspell installation on you local machine
$aspell = Aspell::create();
@@ -296,7 +296,7 @@ Using the MisspellingFinder helper
<?php
use PhpSpellcheck\MisspellingFinder;
use PhpSpellcheck\MisspellingHandler\EchoHandler;
-use PhpSpellcheck\SpellChecker\Aspell;
+use PhpSpellcheck\Spellchecker\Aspell;
use PhpSpellcheck\TextInterface;
use PhpSpellcheck\TextProcessor\TextProcessorInterface;