From 8dabe4fc9621bc7993cb5ed36c4b7d7389bee57e Mon Sep 17 00:00:00 2001 From: Franktronics <69346328+franktronics@users.noreply.github.com> Date: Fri, 17 Mar 2023 03:07:18 +0100 Subject: [PATCH] docs: commentary correction for i18n app folder (#47226) Simple correction of a word in the comments --- examples/app-dir-i18n-routing/get-dictionary.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/app-dir-i18n-routing/get-dictionary.ts b/examples/app-dir-i18n-routing/get-dictionary.ts index c2df5e61e245d..72ec13ebd011d 100644 --- a/examples/app-dir-i18n-routing/get-dictionary.ts +++ b/examples/app-dir-i18n-routing/get-dictionary.ts @@ -2,7 +2,7 @@ import 'server-only' import type { Locale } from './i18n-config' // We enumerate all dictionaries here for better linting and typescript support -// We also get the defalt import for cleaner types +// We also get the default import for cleaner types const dictionaries = { en: () => import('./dictionaries/en.json').then((module) => module.default), de: () => import('./dictionaries/de.json').then((module) => module.default),