From ae320c5db1b7237a7795229b168856f8c2b70b81 Mon Sep 17 00:00:00 2001 From: Salim Djerbouh <13698160+CaddyDz@users.noreply.github.com> Date: Wed, 7 Dec 2022 13:11:42 +0100 Subject: [PATCH] Match locale in example The example mentions the Dutch language, but the code returns English Avoids possible confusion just in case of blind copy-paste ^-^ --- docs/advanced-usage/using-another-default-locale.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advanced-usage/using-another-default-locale.md b/docs/advanced-usage/using-another-default-locale.md index 4727041..7ed9970 100644 --- a/docs/advanced-usage/using-another-default-locale.md +++ b/docs/advanced-usage/using-another-default-locale.md @@ -18,7 +18,7 @@ class YourTag extends SpatieTag { public static function getLocale(): string { - return 'en'; + return 'nl'; } } ```