[1.9.x] Fixed many spelling mistakes in code, comments, and docs.

Backport of 93452a70e8 from master
This commit is contained in:
Josh Soref 2015-12-02 23:55:50 +00:00 committed by Tim Graham
parent 519cfbb4e8
commit 8897f4b0df
61 changed files with 187 additions and 187 deletions

View file

@ -197,7 +197,7 @@ class CommonMiddlewareTest(SimpleTestCase):
response = HttpResponseNotFound()
r = CommonMiddleware().process_response(request, response)
self.assertIsNotNone(r,
"CommonMiddlware failed to return APPEND_SLASH redirect using request.urlconf")
"CommonMiddleware failed to return APPEND_SLASH redirect using request.urlconf")
self.assertEqual(r.status_code, 301)
self.assertEqual(r.url, '/customurlconf/slash/')
@ -236,7 +236,7 @@ class CommonMiddlewareTest(SimpleTestCase):
response = HttpResponseNotFound()
r = CommonMiddleware().process_response(request, response)
self.assertIsNotNone(r,
"CommonMiddlware failed to return APPEND_SLASH redirect using request.urlconf")
"CommonMiddleware failed to return APPEND_SLASH redirect using request.urlconf")
self.assertEqual(r.status_code, 301)
self.assertEqual(
r.url,