Skip to content

Commit

Permalink
Fix incorrect capital letter in class name (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksleight authored Sep 12, 2022
1 parent 363ac20 commit 355e161
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/content/01_Getting_Started/02_Quick_Start.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
<?php
use PhpSpellcheck\SpellChecker\Aspell;
use PhpSpellcheck\Spellchecker\Aspell;

// if you made the default aspell installation on you local machine
$aspell = Aspell::create();
Expand Down Expand Up @@ -48,7 +48,7 @@ spellchecking flow:
<?php
use PhpSpellcheck\MisspellingFinder;
use PhpSpellcheck\MisspellingHandler\EchoHandler;
use PhpSpellcheck\SpellChecker\Aspell;
use PhpSpellcheck\Spellchecker\Aspell;
use PhpSpellcheck\TextInterface;
use PhpSpellcheck\TextProcessor\TextProcessorInterface;

Expand Down
6 changes: 3 additions & 3 deletions docs/docs/getting-started/quick-start.html
Original file line number Diff line number Diff line change
Expand Up @@ -268,10 +268,10 @@ <h1>Install</h1>
<pre><code class="language-sh">$ composer require tigitz/php-spellchecker</code></pre>
<h1>Usage</h1>
<h2>Using the Spellchecker directly</h2>
<p>You can check misspellings directly from a <code>PhpSpellcheck\SpellChecker</code> class and process them on your own.</p>
<p>You can check misspellings directly from a <code>PhpSpellcheck\Spellchecker</code> class and process them on your own.</p>
<p>In this example we use the popular <a href="../03_Spellcheckers/01_Aspell.md">Aspell</a> spellchecker.</p>
<pre><code class="language-php">&lt;?php
use PhpSpellcheck\SpellChecker\Aspell;
use PhpSpellcheck\Spellchecker\Aspell;

// if you made the default aspell installation on you local machine
$aspell = Aspell::create();
Expand All @@ -296,7 +296,7 @@ <h2>Using the MisspellingFinder helper</h2>
<pre><code class="language-php">&lt;?php
use PhpSpellcheck\MisspellingFinder;
use PhpSpellcheck\MisspellingHandler\EchoHandler;
use PhpSpellcheck\SpellChecker\Aspell;
use PhpSpellcheck\Spellchecker\Aspell;
use PhpSpellcheck\TextInterface;
use PhpSpellcheck\TextProcessor\TextProcessorInterface;

Expand Down

0 comments on commit 355e161

Please # to comment.