From 790dc9e6670b0d90c9ff68a0981cdbfb7d9c536a Mon Sep 17 00:00:00 2001 From: Laurenz Date: Fri, 12 Feb 2021 22:55:26 +0100 Subject: =?UTF-8?q?Cleaning=20=F0=9F=A7=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/exec/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/exec/mod.rs') diff --git a/src/exec/mod.rs b/src/exec/mod.rs index a0ed946d..57fe8138 100644 --- a/src/exec/mod.rs +++ b/src/exec/mod.rs @@ -145,8 +145,8 @@ impl Exec for Value { impl Exec for ValueTemplate { fn exec(&self, ctx: &mut ExecContext) { - for part in self { - part.exec(ctx); + for node in self { + node.exec(ctx); } } } -- cgit v1.2.3