Skip to content

Commit a08d8fd

Browse files
author
bors-servo
authored
Auto merge of #1108 - hallfox:no-copy-name-patch, r=emilio
give better variable name Fixing up a comment from #1105
2 parents f315d2c + a373b42 commit a08d8fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/options.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -593,8 +593,8 @@ where
593593
}
594594
}
595595

596-
if let Some(no_partialeq) = matches.values_of("no-copy") {
597-
for regex in no_partialeq {
596+
if let Some(no_copy) = matches.values_of("no-copy") {
597+
for regex in no_copy {
598598
builder = builder.no_copy(String::from(regex));
599599
}
600600
}

0 commit comments

Comments
 (0)