rename placeholder variable

This commit is contained in:
ConnorSkees 2020-06-20 21:53:50 -04:00
parent 27e4f2b541
commit 2d990a03bd

View File

@ -914,11 +914,11 @@ impl<'a, 'b: 'a> IntermediateValueIterator<'a, 'b> {
self.whitespace(); self.whitespace();
if left.node.is_true(left.span)? { if left.node.is_true(left.span)? {
// we explicitly ignore errors here as a workaround for short circuiting // 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 { if let Ok(Spanned {
node: IntermediateValue::Comma, node: IntermediateValue::Comma,
.. ..
}) = foo }) = value
{ {
break; break;
} }