From 59552bea5790c97be0da0a6f16ccd0189857c7a7 Mon Sep 17 00:00:00 2001
From: Daniel Hahler <git@thequod.de>
Date: Fri, 9 Apr 2021 18:55:08 +0200
Subject: [PATCH] Corrected typo in Field.deconstruct docstring.

---
 django/db/models/fields/__init__.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/django/db/models/fields/__init__.py b/django/db/models/fields/__init__.py
index 0ce7de02c6..51155f5776 100644
--- a/django/db/models/fields/__init__.py
+++ b/django/db/models/fields/__init__.py
@@ -419,8 +419,8 @@ class Field(RegisterLookupMixin):
 
          * The name of the field on the model, if contribute_to_class() has
            been run.
-         * The import path of the field, including the class:e.g.
-           django.db.models.IntegerField This should be the most portable
+         * The import path of the field, including the class, e.g.
+           django.db.models.IntegerField. This should be the most portable
            version, so less specific may be better.
          * A list of positional arguments.
          * A dict of keyword arguments.