From 6aa485ec0892125e9b67085afb400bc9e27e6a8d Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Sun, 2 Sep 2018 16:02:10 +0200 Subject: Fix formatting with cargo fmt --- askama_derive/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'askama_derive/src/lib.rs') diff --git a/askama_derive/src/lib.rs b/askama_derive/src/lib.rs index f977b19..5591b82 100644 --- a/askama_derive/src/lib.rs +++ b/askama_derive/src/lib.rs @@ -103,7 +103,8 @@ impl<'a> Heritage<'a> { mut ctx: &'n Context<'n>, contexts: &'n HashMap<&'n PathBuf, Context<'n>>, ) -> Heritage<'n> { - let mut blocks: BlockAncestry<'n> = ctx.blocks + let mut blocks: BlockAncestry<'n> = ctx + .blocks .iter() .map(|(name, def)| (*name, vec![(ctx, *def)])) .collect(); -- cgit