Index: docs/ref/templates/builtins.txt
===================================================================
--- docs/ref/templates/builtins.txt	(revision 13103)
+++ docs/ref/templates/builtins.txt	(working copy)
@@ -1683,6 +1683,15 @@
 Marks a string as not requiring further HTML escaping prior to output. When
 autoescaping is off, this filter has no effect.
 
+.. note::
+	If you are chaining filters and ``safe`` is not the last filter it will
+	have no effect. 
+	
+	For example, in the following the ``escape`` filter makes the string no 
+	longer ``safe``::
+	
+		{{ myVar|safe|escape }}
+
 .. templatefilter:: safeseq
 
 safeseq
