From b30018d74873719a872ee18f16ea5f17d8db9310 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Wed, 22 Mar 2023 00:08:00 -0400 Subject: [PATCH] spelling: plural Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/BaseModule.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/BaseModule.php b/src/BaseModule.php index d9c7da97a7..b43e984772 100644 --- a/src/BaseModule.php +++ b/src/BaseModule.php @@ -90,9 +90,9 @@ abstract class BaseModule implements ICanHandleRequests * * @see L10n::tt() */ - protected function tt(string $singular, string $plurarl, int $count): string + protected function tt(string $singular, string $plural, int $count): string { - return $this->l10n->tt($singular, $plurarl, $count); + return $this->l10n->tt($singular, $plural, $count); } /**