summaryrefslogtreecommitdiff
path: root/django/core
diff options
context:
space:
mode:
Diffstat (limited to 'django/core')
-rw-r--r--django/core/files/storage.py2
-rw-r--r--django/core/handlers/wsgi.py2
-rw-r--r--django/core/management/commands/runserver.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/django/core/files/storage.py b/django/core/files/storage.py
index fcc382b6fc..8ee6443d2b 100644
--- a/django/core/files/storage.py
+++ b/django/core/files/storage.py
@@ -154,7 +154,7 @@ class Storage:
def url(self, name):
"""
Return an absolute URL where the file's contents can be accessed
- directly by a Web browser.
+ directly by a web browser.
"""
raise NotImplementedError('subclasses of Storage must provide a url() method')
diff --git a/django/core/handlers/wsgi.py b/django/core/handlers/wsgi.py
index 2c1c4db241..dc65f114e5 100644
--- a/django/core/handlers/wsgi.py
+++ b/django/core/handlers/wsgi.py
@@ -169,7 +169,7 @@ def get_script_name(environ):
# If Apache's mod_rewrite had a whack at the URL, Apache set either
# SCRIPT_URL or REDIRECT_URL to the full resource URL before applying any
- # rewrites. Unfortunately not every Web server (lighttpd!) passes this
+ # rewrites. Unfortunately not every web server (lighttpd!) passes this
# information through all the time, so FORCE_SCRIPT_NAME, above, is still
# needed.
script_url = get_bytes_from_wsgi(environ, 'SCRIPT_URL', '') or get_bytes_from_wsgi(environ, 'REDIRECT_URL', '')
diff --git a/django/core/management/commands/runserver.py b/django/core/management/commands/runserver.py
index 1e8f4d3b25..66f5217820 100644
--- a/django/core/management/commands/runserver.py
+++ b/django/core/management/commands/runserver.py
@@ -22,7 +22,7 @@ naiveip_re = _lazy_re_compile(r"""^(?:
class Command(BaseCommand):
- help = "Starts a lightweight Web server for development."
+ help = "Starts a lightweight web server for development."
# Validation is called explicitly each time the server is reloaded.
requires_system_checks = []