Fix clippy (#285)

This commit is contained in:
Douman
2019-08-27 14:19:44 -07:00
committed by Carl Lerche
parent ae9991f3ba
commit 4f5ed82b3c
8 changed files with 18 additions and 18 deletions
+2 -2
View File
@@ -50,8 +50,8 @@ impl<T, U> Chain<T, U> {
/// ```
pub fn new(a: T, b: U) -> Chain<T, U> {
Chain {
a: a,
b: b,
a,
b,
}
}