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
@@ -14,8 +14,8 @@ pub struct Take<T> {
pub fn new<T>(inner: T, limit: usize) -> Take<T> {
Take {
inner: inner,
limit: limit,
inner,
limit,
}
}