diff options
| author | Jacob Kaplan-Moss <jacob@jacobian.org> | 2007-01-10 19:55:44 +0000 |
|---|---|---|
| committer | Jacob Kaplan-Moss <jacob@jacobian.org> | 2007-01-10 19:55:44 +0000 |
| commit | 3f6fd5dfd126aca52be1d9c4e7d6678084b41a8b (patch) | |
| tree | f36523a6af9e3291f4463659ca2a2e441fb2413c | |
| parent | 78b89ff11841c727a4738e7cbfacfb59ad9964fb (diff) | |
Fixed #3277 - fixed a couple of typoes in docs/testing.txt. Thanks, Jeremy.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4301 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | docs/testing.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/testing.txt b/docs/testing.txt index a0b8a8a187..61b34e8c83 100644 --- a/docs/testing.txt +++ b/docs/testing.txt @@ -220,7 +220,7 @@ can be invoked on the ``Client`` instance. will result in the evaluation of a GET request equivalent to:: - http://yoursite.com/customers/details/?name='fred'&age=7 + http://yoursite.com/customers/details/?name=fred&age=7 ``post(path, data={})`` Make a POST request on the provided ``path``. The key-value pairs in the @@ -415,7 +415,7 @@ arguments: tested. This is the same format returned by ``django.db.models.get_apps()`` Verbosity determines the amount of notification and debug information that - will be printed to the console; '0' is no output, '1' is normal output, + will be printed to the console; `0` is no output, `1` is normal output, and `2` is verbose output. Testing utilities |
