diff options
author | technic93 <alexeytech@gmail.com> | 2021-03-14 19:15:36 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2021-03-14 20:33:49 +0100 |
commit | f3f2a7e20615e1ac2a04f7a7a02714ef891424f5 (patch) | |
tree | 59e11c8481f691fc74dc9900ed214f5cb281e4c8 | |
parent | 7b954cd78800b8730401c4471f2289e2d990444f (diff) | |
download | askama-f3f2a7e20615e1ac2a04f7a7a02714ef891424f5.tar.gz askama-f3f2a7e20615e1ac2a04f7a7a02714ef891424f5.tar.bz2 askama-f3f2a7e20615e1ac2a04f7a7a02714ef891424f5.zip |
fix typo in docstring
-rw-r--r-- | askama_shared/src/filters/yaml.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/askama_shared/src/filters/yaml.rs b/askama_shared/src/filters/yaml.rs index a6059b7..d71e630 100644 --- a/askama_shared/src/filters/yaml.rs +++ b/askama_shared/src/filters/yaml.rs @@ -2,7 +2,7 @@ use crate::error::{Error, Result}; use askama_escape::{Escaper, MarkupDisplay}; use serde::Serialize; -/// Serialize to JSON (requires `serde_json` feature) +/// Serialize to YAML (requires `serde_yaml` feature) /// /// ## Errors /// |