summaryrefslogtreecommitdiff
path: root/django/utils/jslex.py
diff options
context:
space:
mode:
Diffstat (limited to 'django/utils/jslex.py')
-rw-r--r--django/utils/jslex.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/jslex.py b/django/utils/jslex.py
index 1b47230b6d..e54d021bbe 100644
--- a/django/utils/jslex.py
+++ b/django/utils/jslex.py
@@ -82,7 +82,7 @@ class JsLexer(Lexer):
>>> list(lexer.lex("a = 1"))
[('id', 'a'), ('ws', ' '), ('punct', '='), ('ws', ' '), ('dnum', '1')]
- This doesn't properly handle non-Ascii characters in the Javascript source.
+ This doesn't properly handle non-ASCII characters in the Javascript source.
"""
# Because these tokens are matched as alternatives in a regex, longer