summaryrefslogtreecommitdiff
path: root/django/http
diff options
context:
space:
mode:
authorNick Pope <nick@nickpope.me.uk>2021-04-29 19:29:08 +0100
committerGitHub <noreply@github.com>2021-04-29 20:29:08 +0200
commit2161db0792f2e4d3deef3e09cd72f7a08340cafe (patch)
tree94ffd28dc91c0c7b3aae5cc53a8f1233a7b277c1 /django/http
parent907d3a7ff4e12ad4ccc86af26a728007fe4d6fa2 (diff)
Fixed capitalization of "ECMAScript" and "JavaScript".
Diffstat (limited to 'django/http')
-rw-r--r--django/http/response.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/http/response.py b/django/http/response.py
index 1c22edaff3..f1f0a1ed43 100644
--- a/django/http/response.py
+++ b/django/http/response.py
@@ -581,7 +581,7 @@ class JsonResponse(HttpResponse):
An HTTP response class that consumes data to be serialized to JSON.
:param data: Data to be dumped into json. By default only ``dict`` objects
- are allowed to be passed due to a security flaw before EcmaScript 5. See
+ are allowed to be passed due to a security flaw before ECMAScript 5. See
the ``safe`` parameter for more information.
:param encoder: Should be a json encoder class. Defaults to
``django.core.serializers.json.DjangoJSONEncoder``.