diff options
author | Jordan Danford <jordandanford@gmail.com> | 2017-03-09 09:49:45 -0700 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-03-09 21:20:06 +0100 |
commit | 1442aa71e5d0cb408bcd360f39e35deb2e734746 (patch) | |
tree | 21933ef0e39724202ebb4846dede6266960223d7 | |
parent | e1b70fb1b930864094c073a28e47e163ccc99a4e (diff) | |
download | askama-1442aa71e5d0cb408bcd360f39e35deb2e734746.tar.gz askama-1442aa71e5d0cb408bcd360f39e35deb2e734746.tar.bz2 askama-1442aa71e5d0cb408bcd360f39e35deb2e734746.zip |
Fix formatting in "Variables" section of docs
-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 //! |