summaryrefslogtreecommitdiff
path: root/django/utils/encoding.py
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2015-11-03 11:55:10 +0200
committerVille Skyttä <ville.skytta@iki.fi>2015-11-03 11:58:13 +0200
commit3ee18400ae9b916da1a3bee9c9c630fd223a2d3c (patch)
treebed3af8d3fa7daeef7e8ba127d0e70a850a8bb7f /django/utils/encoding.py
parenta10cbbbc17d4244812ef713437fa44207fe1a223 (diff)
downloaddjango-3ee18400ae9b916da1a3bee9c9c630fd223a2d3c.tar.gz
Fixed #25668 -- Misc spelling errors
Diffstat (limited to 'django/utils/encoding.py')
-rw-r--r--django/utils/encoding.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/encoding.py b/django/utils/encoding.py
index 48fde393a7..6bc285d899 100644
--- a/django/utils/encoding.py
+++ b/django/utils/encoding.py
@@ -223,7 +223,7 @@ def escape_uri_path(path):
# reserved = ";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" | "$" | ","
# unreserved = alphanum | mark
# mark = "-" | "_" | "." | "!" | "~" | "*" | "'" | "(" | ")"
- # The list of safe characters here is constructed substracting ";", "=",
+ # The list of safe characters here is constructed subtracting ";", "=",
# and "?" according to section 3.3 of RFC 2396.
# The reason for not subtracting and escaping "/" is that we are escaping
# the entire path, not a path segment.