diff options
author | Fabian Würfl <bafdyce@tuta.io> | 2020-11-21 11:13:42 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2020-11-21 11:24:43 +0100 |
commit | c024db6a3a007e3d592d41001533df851343ed45 (patch) | |
tree | bc551cb75a265d80b053f8873ca3f6531aee93c7 /book/src | |
parent | 9a6ca13e8369d55a4fc9b2c3c0c381e3fd9479cd (diff) | |
download | askama-c024db6a3a007e3d592d41001533df851343ed45.tar.gz askama-c024db6a3a007e3d592d41001533df851343ed45.tar.bz2 askama-c024db6a3a007e3d592d41001533df851343ed45.zip |
Fix small wording issues in book
Diffstat (limited to 'book/src')
-rw-r--r-- | book/src/filters.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/book/src/filters.md b/book/src/filters.md index 25fbbe1..47fafdb 100644 --- a/book/src/filters.md +++ b/book/src/filters.md @@ -258,7 +258,7 @@ fn main() { ## The `json` filter -Enabling the `serde-json` filter will enable the use of the `json` filter. +Enabling the `serde-json` feature will enable the use of the `json` filter. This will output formatted JSON for any value that implements the required `Serialize` trait. @@ -271,7 +271,7 @@ This will output formatted JSON for any value that implements the required ## The `yaml` filter -Enabling the `serde-yaml` filter will enable the use of the `yaml` filter. +Enabling the `serde-yaml` feature will enable the use of the `yaml` filter. This will output formatted JSON for any value that implements the required `Serialize` trait. |