Skip to content

Commit a5e2015

Browse files
chapter 5: propose changes for what I take to be typos
1 parent 7f7807a commit a5e2015

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

chapter_05_post_and_database.asciidoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ def home_page(request):
355355
OK that gets our unit tests passing, but it's not really what we want.footnote:[
356356
But we _did_ learn about `request.method` and `request.POST` right?
357357
I know it might seem that I'm overdoing it,
358-
but doing things in tiny little really does have a lot of advantages,
358+
but doing things in tiny little steps really does have a lot of advantages,
359359
and one of them is that you can really think about (or in this case, learn)
360360
one thing at a time.]
361361

@@ -633,7 +633,7 @@ on applying DRY too quickly.
633633

634634

635635
Now we get to the `self.fail('Finish the test!')`.
636-
If get rid of that and finish writing our FT,
636+
If we get rid of that and finish writing our FT,
637637
to add the check for adding a second item to the table
638638
(copy and paste is our friend),
639639
we begin to see that our first cut solution really isn't going to, um, cut it:
@@ -964,7 +964,7 @@ django.db.utils.OperationalError: no such table: lists_item
964964
----
965965

966966
In Django, the ORM's job is to model and read and write from database tables,
967-
but there's a second system that's in charge,of actually _creating_
967+
but there's a second system that's in charge of actually _creating_
968968
the tables in the database called "migrations".
969969
Its job is to let you to add, remove, and modify tables and columns,
970970
based on changes you make to your _models.py_ files.

0 commit comments

Comments
 (0)