summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Beitey <david@davidjb.com>2019-01-14 23:54:15 +0000
committerTim Graham <timograham@gmail.com>2019-01-14 20:32:19 -0500
commit885cb0d39041e359a3ad00d4bdaac24cbcc843c9 (patch)
treea6e5d17e45a4190814e41511415c4dc8f760dbf8
parent1508e71c5b056ba099097a849b13187dcbfa26a1 (diff)
Fixed "lets" mistakes in docs.
-rw-r--r--docs/intro/tutorial01.txt4
-rw-r--r--docs/topics/forms/formsets.txt2
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
index db3340e702..208a4f3a3b 100644
--- a/docs/intro/tutorial01.txt
+++ b/docs/intro/tutorial01.txt
@@ -313,8 +313,8 @@ app will still work.
You should always use ``include()`` when you include other URL patterns.
``admin.site.urls`` is the only exception to this.
-You have now wired an ``index`` view into the URLconf. Lets verify it's
-working, run the following command:
+You have now wired an ``index`` view into the URLconf. Verify it's working with
+the following command:
.. console::
diff --git a/docs/topics/forms/formsets.txt b/docs/topics/forms/formsets.txt
index eb84da40eb..0c4c7f0bee 100644
--- a/docs/topics/forms/formsets.txt
+++ b/docs/topics/forms/formsets.txt
@@ -687,7 +687,7 @@ Using more than one formset in a view
You are able to use more than one formset in a view if you like. Formsets
borrow much of its behavior from forms. With that said you are able to use
``prefix`` to prefix formset form field names with a given value to allow
-more than one formset to be sent to a view without name clashing. Lets take
+more than one formset to be sent to a view without name clashing. Let's take
a look at how this might be accomplished::
from django.forms import formset_factory