chore: remove redundant field names in struct literals (#1334)

This commit is contained in:
Taiki Endo
2019-07-20 10:43:19 -07:00
committed by Carl Lerche
parent 1b2d997863
commit 9af07ce208
26 changed files with 33 additions and 43 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ impl<T> Throttle<T> {
Self {
delay: Delay::new_timeout(clock::now() + duration, duration),
has_delayed: true,
stream: stream,
stream,
}
}
}