Browse Source

Fixed utils.html.escape()'s docs with regards to string coercion.

As of 301de774c21d055e9e5a7073e5bffdb52bc71079.
Claude Paroz 6 years ago
parent
commit
1ed8527e3d
1 changed files with 1 additions and 2 deletions
  1. 1 2
      docs/ref/utils.txt

+ 1 - 2
docs/ref/utils.txt

@@ -589,8 +589,7 @@ escaping HTML.
 .. function:: escape(text)
 
     Returns the given text with ampersands, quotes and angle brackets encoded
-    for use in HTML. The input is first passed through
-    :func:`~django.utils.encoding.force_text` and the output has
+    for use in HTML. The input is first coerced to a string and the output has
     :func:`~django.utils.safestring.mark_safe` applied.
 
 .. function:: conditional_escape(text)