From 73d41059f898c9a16fc23265e3a770eb14ee969e Mon Sep 17 00:00:00 2001 From: naglis Date: Mon, 8 Mar 2021 15:19:31 +0200 Subject: [PATCH] Fix typo in site settings documentation example (#6881) Lowercase `i` is used in the model definition and in other examples. --- docs/reference/contrib/settings.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/contrib/settings.rst b/docs/reference/contrib/settings.rst index 0f969d44e7..5216e6ab69 100644 --- a/docs/reference/contrib/settings.rst +++ b/docs/reference/contrib/settings.rst @@ -214,7 +214,7 @@ You can store the settings instance in a variable to save some typing, if you ha {% with social_settings=settings("app_label.SocialMediaSettings") %} Follow us on Twitter at @{{ social_settings.twitter }}, - or Instagram at @{{ social_settings.Instagram }}. + or Instagram at @{{ social_settings.instagram }}. {% endwith %} Or, alternately, using the ``set`` tag: