浏览代码

Fixed "lets" mistakes in docs.

David Beitey 6 年之前
父节点
当前提交
885cb0d390
共有 2 个文件被更改,包括 3 次插入3 次删除
  1. 2 2
      docs/intro/tutorial01.txt
  2. 1 1
      docs/topics/forms/formsets.txt

+ 2 - 2
docs/intro/tutorial01.txt

@@ -313,8 +313,8 @@ app will still work.
     You should always use ``include()`` when you include other URL patterns.
     You should always use ``include()`` when you include other URL patterns.
     ``admin.site.urls`` is the only exception to this.
     ``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::
 .. console::
 
 

+ 1 - 1
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
 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
 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
 ``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::
 a look at how this might be accomplished::
 
 
     from django.forms import formset_factory
     from django.forms import formset_factory