Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #297

Merged
merged 1 commit into from
May 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/Loader/Loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion src/Merge.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
namespace Gettext;

/**
* Merge contants.
* Merge constants.
*/
final class Merge
{
Expand Down
2 changes: 1 addition & 1 deletion src/Scanner/Scanner.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
Loading