diff --git a/app/client/lib/localization.ts b/app/client/lib/localization.ts index 8fe6c155..ef28a049 100644 --- a/app/client/lib/localization.ts +++ b/app/client/lib/localization.ts @@ -150,7 +150,7 @@ function isLikeDomContents(value: any): boolean { * namespace and a key prefix (a scope). */ export function makeT(scope: string, instance?: typeof i18next) { - // Can create the scopedInstance yet as it might not be initialized. + // Can't create the scopedInstance yet as it might not be initialized. let scopedInstance: null|typeof i18next = null; let scopedResolver: null|typeof i18next.t = null; return function>(key: string, args?: T|null) {