From 355e161726f6a91dc03a5da3bd06ef1fc7ef1cb2 Mon Sep 17 00:00:00 2001 From: Jack Sleight Date: Mon, 12 Sep 2022 14:24:15 +0100 Subject: [PATCH] Fix incorrect capital letter in class name (#46) --- docs/content/01_Getting_Started/02_Quick_Start.md | 6 +++--- docs/docs/getting-started/quick-start.html | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) 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

Usage

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 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;