From c4832e719371fa1d43faa713e00264a124b886b6 Mon Sep 17 00:00:00 2001
From: aruseni <aruseni.magiku@gmail.com>
Date: Sun, 27 Oct 2024 21:46:13 +0200
Subject: [PATCH] Corrected note on importing fields in model field reference
 docs.

---
 docs/ref/models/fields.txt | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt
index 14fc767ad7..07e86785d9 100644
--- a/docs/ref/models/fields.txt
+++ b/docs/ref/models/fields.txt
@@ -22,9 +22,9 @@ This document contains all the API references of :class:`Field` including the
 
 .. note::
 
-    Technically, these models are defined in :mod:`django.db.models.fields`, but
-    for convenience they're imported into :mod:`django.db.models`; the standard
-    convention is to use ``from django.db import models`` and refer to fields as
+    Fields are defined in :mod:`django.db.models.fields`, but for convenience
+    they're imported into :mod:`django.db.models`. The standard convention is
+    to use ``from django.db import models`` and refer to fields as
     ``models.<Foo>Field``.
 
 .. _common-model-field-options: