diff options
-rw-r--r-- | askama/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/askama/src/lib.rs b/askama/src/lib.rs index 311992f..1427854 100644 --- a/askama/src/lib.rs +++ b/askama/src/lib.rs @@ -51,8 +51,8 @@ //! Reading from variables is subject to the usual borrowing policies. //! For example, `{{ name }}` will get the ``name`` field from the template //! context, -//! while `{{ user.name }}` will get the ``name`` field of the `user` -//! ``field`` of the template context. +//! while `{{ user.name }}` will get the ``name`` field of the ``user`` +//! field of the template context. //! //! ## Filters //! |