Fixed #11509 -- Modified usage of "Web" to match our style guide in various documentation, comments and code. Thanks to timo and Simon Meers for the work on the patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@14069 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Russell Keith-Magee 2010-10-09 08:12:50 +00:00
parent 2cadc6b10a
commit a904e55859
60 changed files with 92 additions and 92 deletions

View file

@ -9,7 +9,7 @@ class CustomColumnsTests(TestCase):
a1 = Author.objects.create(first_name="John", last_name="Smith")
a2 = Author.objects.create(first_name="Peter", last_name="Jones")
art = Article.objects.create(headline="Django lets you build web apps easily")
art = Article.objects.create(headline="Django lets you build Web apps easily")
art.authors = [a1, a2]
# Although the table and column names on Author have been set to custom
@ -58,7 +58,7 @@ class CustomColumnsTests(TestCase):
# Get the articles for an author
self.assertQuerysetEqual(
a.article_set.all(), [
"Django lets you build web apps easily",
"Django lets you build Web apps easily",
],
lambda a: a.headline
)