Fix Clippy lints: assign_op_pattern

This commit is contained in:
Brandon W Maister 2017-06-23 14:59:43 -05:00
parent de7f0f64f7
commit fd6036a8b9
1 changed files with 1 additions and 1 deletions

View File

@ -538,7 +538,7 @@ impl Parsed {
// it's okay, just do not try to overwrite the existing field.
59 => {}
// `datetime` is known to be off by one second.
0 => { datetime = datetime - OldDuration::seconds(1); }
0 => { datetime -= OldDuration::seconds(1); }
// otherwise it is impossible.
_ => return Err(IMPOSSIBLE)
}