From 3568bc2604a4d8d6069359aebfb520bb2e3c1fce Mon Sep 17 00:00:00 2001 From: Ryan Miller Date: Thu, 28 Mar 2024 16:16:02 +1100 Subject: [PATCH] fix: spelling mistake in getMessage comment --- ts/util/i18n.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/util/i18n.ts b/ts/util/i18n.ts index 499fbf331..84dd6a88a 100644 --- a/ts/util/i18n.ts +++ b/ts/util/i18n.ts @@ -54,7 +54,7 @@ export const setupi18n = (locale: string, dictionary: LocalizerDictionary) => { return '' as R; } - /** If a localized string does not have any arguments to substitute it is retured with no changes */ + /** If a localized string does not have any arguments to substitute it is returned with no changes */ if (!args) { return localizedString as R; }