aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Simon Guillot <sgr.guillot@gmail.com>2019-04-11 17:07:51 +0200
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2019-04-12 21:22:52 +0200
commit3825a2bb5ac6f1ad08b6b5d796d4271e4a38761e (patch)
treeb1d6ba1e9a2c3fbd25fd129acdf0318390c1cfd3
parenta12f397c373ab69ddd5da6f738309b942201e1f6 (diff)
downloadaskama-3825a2bb5ac6f1ad08b6b5d796d4271e4a38761e.tar.gz
askama-3825a2bb5ac6f1ad08b6b5d796d4271e4a38761e.tar.bz2
askama-3825a2bb5ac6f1ad08b6b5d796d4271e4a38761e.zip
Fix doc for using custom filters
Diffstat (limited to '')
-rw-r--r--askama/src/lib.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/askama/src/lib.rs b/askama/src/lib.rs
index 08a7112..a7de51a 100644
--- a/askama/src/lib.rs
+++ b/askama/src/lib.rs
@@ -172,9 +172,8 @@
//! [filters module documentation](filters/index.html).
//!
//! To define your own filters, simply have a module named `filters` in
-//! scope of the context deriving a `Template` `impl`. Any filter names
-//! that are not part of the built-in filters will be referenced through
-//! the `filters::` prefix.
+//! scope of the context deriving a `Template` `impl`. Note that in case of
+//! name collision, the built in filters take precedence.
//!
//! ## Whitespace control
//!