remove trailing spaces

This commit is contained in:
Artyom Pavlov 2018-09-13 00:52:59 +00:00 committed by GitHub
parent 37972ae300
commit 8a0aa9f3ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -459,7 +459,7 @@ impl Duration {
None
}
}
/// Returns the number of seconds contained by this `Duration` as `f64`.
///
/// The returned value does include the fractional (nanosecond) part of the duration.
@ -497,7 +497,7 @@ impl Duration {
nanos: (nanos % (NANOS_PER_SEC as u128)) as u32,
}
}
/// Multiply `Duration` by `f64`.
///
/// # Examples