aboutsummaryrefslogtreecommitdiffstats
path: root/askama_shared
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2020-07-23 22:04:29 +0200
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2020-07-23 22:04:29 +0200
commitd9a5b28f66ea2bf64c6b8649edbd0ab6037d0dd1 (patch)
tree14344aab7211650360f4ee43af2dbcefa72ac642 /askama_shared
parent682023031e703c1abbf7bf012f3ef0eed0296b19 (diff)
downloadaskama-d9a5b28f66ea2bf64c6b8649edbd0ab6037d0dd1.tar.gz
askama-d9a5b28f66ea2bf64c6b8649edbd0ab6037d0dd1.tar.bz2
askama-d9a5b28f66ea2bf64c6b8649edbd0ab6037d0dd1.zip
Point to relevant book chapter from the filters module docs
Diffstat (limited to '')
-rw-r--r--askama_shared/src/filters/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/askama_shared/src/filters/mod.rs b/askama_shared/src/filters/mod.rs
index 7253e4b..f203348 100644
--- a/askama_shared/src/filters/mod.rs
+++ b/askama_shared/src/filters/mod.rs
@@ -1,8 +1,8 @@
//! Module for built-in filter functions
//!
//! Contains all the built-in filter functions for use in templates.
-//! You can define your own filters; for more information,
-//! see the top-level crate documentation.
+//! You can define your own filters, as well.
+//! For more information, read the [book](https://djc.github.io/askama/filters.html).
#![allow(clippy::trivially_copy_pass_by_ref)]
use std::fmt;