From 2d990a03bd57f1b6fe74464fefdf6432fe349723 Mon Sep 17 00:00:00 2001 From: ConnorSkees <39542938+ConnorSkees@users.noreply.github.com> Date: Sat, 20 Jun 2020 21:53:50 -0400 Subject: [PATCH] rename placeholder variable --- src/parse/value.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/parse/value.rs b/src/parse/value.rs index e94de66..09fd33c 100644 --- a/src/parse/value.rs +++ b/src/parse/value.rs @@ -914,11 +914,11 @@ impl<'a, 'b: 'a> IntermediateValueIterator<'a, 'b> { self.whitespace(); if left.node.is_true(left.span)? { // we explicitly ignore errors here as a workaround for short circuiting - while let Some(foo) = self.peek() { + while let Some(value) = self.peek() { if let Ok(Spanned { node: IntermediateValue::Comma, .. - }) = foo + }) = value { break; }