From a373b42cdce239c40593683105d1be2feecf9c85 Mon Sep 17 00:00:00 2001 From: Taylor Foxhall Date: Thu, 26 Oct 2017 22:29:40 -0400 Subject: [PATCH] give better variable name --- src/options.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/options.rs b/src/options.rs index d06fb6a27d..10c31234ac 100644 --- a/src/options.rs +++ b/src/options.rs @@ -593,8 +593,8 @@ where } } - if let Some(no_partialeq) = matches.values_of("no-copy") { - for regex in no_partialeq { + if let Some(no_copy) = matches.values_of("no-copy") { + for regex in no_copy { builder = builder.no_copy(String::from(regex)); } }