aboutsummaryrefslogtreecommitdiffstats
path: root/book
diff options
context:
space:
mode:
authorLibravatar Sadika Sumanapala <sadikahs@gmail.com>2023-12-18 23:10:22 +0530
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2023-12-18 22:51:53 +0100
commitb8697ba20205c01ac43da4e3054a2d3f3be007b9 (patch)
tree5b837896390055d3ea67f34c93b4117cea6107a5 /book
parentcc71e4ab0adfbb08ac82e028863c802f5fb9b062 (diff)
downloadaskama-b8697ba20205c01ac43da4e3054a2d3f3be007b9.tar.gz
askama-b8697ba20205c01ac43da4e3054a2d3f3be007b9.tar.bz2
askama-b8697ba20205c01ac43da4e3054a2d3f3be007b9.zip
Fix typo
Diffstat (limited to 'book')
-rw-r--r--book/src/template_expansion.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/book/src/template_expansion.md b/book/src/template_expansion.md
index a1c39fe..cd76d13 100644
--- a/book/src/template_expansion.md
+++ b/book/src/template_expansion.md
@@ -8,7 +8,7 @@ following examples might not be up-to-date.
## Basic explanations
-Whwn you add `#[derive(Template)]` and `#[template(...)]` on your type, the
+When you add `#[derive(Template)]` and `#[template(...)]` on your type, the
`Template` derive proc-macro will then generate an implementation of the
`askama::Template` trait which will be a Rust version of the template.