Fixed grammar: Designate -> Differentiate in docs/design_philosophies.txt

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3438 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-07-24 02:43:09 +00:00
parent 91bf6e5765
commit 0991cd004c
1 changed files with 2 additions and 2 deletions

View File

@ -274,8 +274,8 @@ Loose coupling
A view shouldn't care about which template system the developer uses -- or even A view shouldn't care about which template system the developer uses -- or even
whether a template system is used at all. whether a template system is used at all.
Designate between GET and POST Differentiate between GET and POST
------------------------------ ----------------------------------
GET and POST are distinct; developers should explicitly use one or the other. GET and POST are distinct; developers should explicitly use one or the other.
The framework should make it easy to distinguish between GET and POST data. The framework should make it easy to distinguish between GET and POST data.