From 2207f89fe9bc755c50b6a6ba4444f91e37f4631b Mon Sep 17 00:00:00 2001 From: Caen De Silva Date: Thu, 31 Oct 2024 21:55:22 +0100 Subject: [PATCH] Fix typo in Translator code comment Fixes perfroming => performing --- src/Illuminate/Translation/Translator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Translation/Translator.php b/src/Illuminate/Translation/Translator.php index e13a35b85c0f..aff3291e3267 100755 --- a/src/Illuminate/Translation/Translator.php +++ b/src/Illuminate/Translation/Translator.php @@ -118,7 +118,7 @@ public function has($key, $locale = null, $fallback = true) $locale = $locale ?: $this->locale; // We should temporarily disable the handling of missing translation keys - // while perfroming the existence check. After the check, we will turn + // while performing the existence check. After the check, we will turn // the missing translation keys handling back to its original value. $handleMissingTranslationKeys = $this->handleMissingTranslationKeys;