Skip to content

Commit 474b86a

Browse files
committed
Fix typos
1 parent 1c0a999 commit 474b86a

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Previous releases are documented in [github releases](https://github.com/oscarot
103103
### Removed
104104
- Extractors (now scanners and loaders), generators and translators were removed from this package and published as external packages, allowing to install only those that you need. Only Po and Mo formats are included by default.
105105
- Removed magic classes like `Translations::fromPoFile` or `$translation->toMoFile()`. Now, the scanners, loaders and generators are independent classes that have to be instantiated.
106-
- Removed `Merge::LANGUAGE_OVERRIDE` and `Merge::DOMAIN_OVERRIDE` contants
106+
- Removed `Merge::LANGUAGE_OVERRIDE` and `Merge::DOMAIN_OVERRIDE` constants
107107

108108
### Fixed
109109
- Improved code quality

src/Loader/Loader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use Gettext\Translations;
99

1010
/**
11-
* Base class with common funtions for all loaders.
11+
* Base class with common functions for all loaders.
1212
*/
1313
abstract class Loader implements LoaderInterface
1414
{

src/Merge.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
namespace Gettext;
55

66
/**
7-
* Merge contants.
7+
* Merge constants.
88
*/
99
final class Merge
1010
{

src/Scanner/Scanner.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use Gettext\Translations;
99

1010
/**
11-
* Base class with common funtions for all scanners.
11+
* Base class with common functions for all scanners.
1212
*/
1313
abstract class Scanner implements ScannerInterface
1414
{

0 commit comments

Comments
 (0)