diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-03-27 12:15:53 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-03-28 10:00:12 +0100 |
| commit | 881362986a1ee8f650752de8471a895890b71f96 (patch) | |
| tree | febe869f52c7091f07029aef165ffcdd2da2ed24 /django/utils | |
| parent | 9ab1d5559681d3adde4fcfc98a19a7396ed6a42e (diff) | |
Fixed "byte string" typo in various docs and comments.
Diffstat (limited to 'django/utils')
| -rw-r--r-- | django/utils/safestring.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/utils/safestring.py b/django/utils/safestring.py index dcdaf26171..1afa18d521 100644 --- a/django/utils/safestring.py +++ b/django/utils/safestring.py @@ -25,7 +25,7 @@ class SafeString(str, SafeData): """ def __add__(self, rhs): """ - Concatenating a safe string with another safe byte string or + Concatenating a safe string with another safe bytestring or safe string is safe. Otherwise, the result is no longer safe. """ t = super().__add__(rhs) |
