aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Broono Lu <broono@qq.com>2020-01-15 23:50:29 +0800
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2020-01-16 09:12:48 +0100
commitdb2e6a2f08d896faa2947af91caca930c06b1f16 (patch)
treec4f139bef7072f3f059e62f73b1271e17ef0561b
parentadd04785cf87973cfc37ea208e53e4c63ced6bb9 (diff)
downloadaskama-db2e6a2f08d896faa2947af91caca930c06b1f16.tar.gz
askama-db2e6a2f08d896faa2947af91caca930c06b1f16.tar.bz2
askama-db2e6a2f08d896faa2947af91caca930c06b1f16.zip
Remove redundant word in doc
Diffstat (limited to '')
-rw-r--r--askama/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/askama/src/lib.rs b/askama/src/lib.rs
index a4e4c27..cd09a6b 100644
--- a/askama/src/lib.rs
+++ b/askama/src/lib.rs
@@ -327,7 +327,7 @@
//! ```
//!
//! That is, a `match` block can optionally contain some whitespace (but
-//! no other literal content), followed by a number of `when` blocks and
+//! no other literal content), followed by a number of `when` blocks
//! and an optional `else` block. Each `when` block must name a list of
//! matches (`(val)`), optionally introduced with a variant name. The
//! `else` block is equivalent to matching on `_` (matching anything).