Skip to content

Commit

Permalink
Auto merge of #1108 - hallfox:no-copy-name-patch, r=emilio
Browse files Browse the repository at this point in the history
give better variable name

Fixing up a comment from #1105
  • Loading branch information
bors-servo authored Oct 27, 2017
2 parents f315d2c + a373b42 commit a08d8fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}
}
Expand Down

0 comments on commit a08d8fd

Please sign in to comment.