From 474b86aa7c8a1a978d51e6250cfc8e1c625a17f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Sat, 18 May 2024 11:32:18 +0000 Subject: [PATCH] Fix typos --- CHANGELOG.md | 2 +- src/Loader/Loader.php | 2 +- src/Merge.php | 2 +- src/Scanner/Scanner.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5bc8edbf..9f9b8190 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -103,7 +103,7 @@ Previous releases are documented in [github releases](https://github.com/oscarot ### Removed - 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. - Removed magic classes like `Translations::fromPoFile` or `$translation->toMoFile()`. Now, the scanners, loaders and generators are independent classes that have to be instantiated. -- Removed `Merge::LANGUAGE_OVERRIDE` and `Merge::DOMAIN_OVERRIDE` contants +- Removed `Merge::LANGUAGE_OVERRIDE` and `Merge::DOMAIN_OVERRIDE` constants ### Fixed - Improved code quality diff --git a/src/Loader/Loader.php b/src/Loader/Loader.php index 4ff0a59b..684f7cab 100644 --- a/src/Loader/Loader.php +++ b/src/Loader/Loader.php @@ -8,7 +8,7 @@ use Gettext\Translations; /** - * Base class with common funtions for all loaders. + * Base class with common functions for all loaders. */ abstract class Loader implements LoaderInterface { diff --git a/src/Merge.php b/src/Merge.php index 29d4035e..0406b81d 100644 --- a/src/Merge.php +++ b/src/Merge.php @@ -4,7 +4,7 @@ namespace Gettext; /** - * Merge contants. + * Merge constants. */ final class Merge { diff --git a/src/Scanner/Scanner.php b/src/Scanner/Scanner.php index b1440e5f..62a9f7cf 100644 --- a/src/Scanner/Scanner.php +++ b/src/Scanner/Scanner.php @@ -8,7 +8,7 @@ use Gettext\Translations; /** - * Base class with common funtions for all scanners. + * Base class with common functions for all scanners. */ abstract class Scanner implements ScannerInterface {