From 5c4269197c0496787d9e0329df9b12aa5237405c Mon Sep 17 00:00:00 2001 From: Ferran Jovell Date: Fri, 16 Sep 2022 14:21:53 +0200 Subject: [PATCH] [4.1.x] Fixed #34018 -- Fixed typo in docs/ref/contrib/flatpages.txt. Backport of 6619baab9b02e9f98598993e14cfc2b462b3a710 from main --- docs/ref/contrib/flatpages.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/contrib/flatpages.txt b/docs/ref/contrib/flatpages.txt index 35eb4f9bc9..ae195ed876 100644 --- a/docs/ref/contrib/flatpages.txt +++ b/docs/ref/contrib/flatpages.txt @@ -9,7 +9,7 @@ Django comes with an optional "flatpages" application. It lets you store "flat" HTML content in a database and handles the management for you via Django's admin interface and a Python API. -A flatpage is a object with a URL, title and content. Use it for one-off, +A flatpage is an object with a URL, title and content. Use it for one-off, special-case pages, such as "About" or "Privacy Policy" pages, that you want to store in a database but for which you don't want to develop a custom Django application.