diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-08-08 12:49:16 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-08-08 12:49:16 +0200 |
commit | aadc4a9aa273adb92b4bd6bdd0e91818dffaa4a0 (patch) | |
tree | b50df202f7d4de1468c3e313ce85688260bff275 | |
parent | 647c8c0b52114ab1d6dde8b7399652c926ec9a9a (diff) | |
download | askama-aadc4a9aa273adb92b4bd6bdd0e91818dffaa4a0.tar.gz askama-aadc4a9aa273adb92b4bd6bdd0e91818dffaa4a0.tar.bz2 askama-aadc4a9aa273adb92b4bd6bdd0e91818dffaa4a0.zip |
Rewrite sentence from passive to active
Diffstat (limited to '')
-rw-r--r-- | askama/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/askama/src/lib.rs b/askama/src/lib.rs index ed2a6c9..8821871 100644 --- a/askama/src/lib.rs +++ b/askama/src/lib.rs @@ -207,7 +207,7 @@ //! Askama supports string literals (`"foo"`) and integer literals (`1`). //! It supports almost all binary operators that Rust supports, //! including arithmetic, comparison and logic operators. -//! The same precedence order as Rust uses is applied. +//! The parser applies the same precedence order as the Rust compiler. //! Expressions can be grouped using parentheses. #![allow(unused_imports)] |