From 8a0aa9f3ae2459f15270638add69bdc7619cd327 Mon Sep 17 00:00:00 2001 From: Artyom Pavlov Date: Thu, 13 Sep 2018 00:52:59 +0000 Subject: [PATCH] remove trailing spaces --- src/libcore/time.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcore/time.rs b/src/libcore/time.rs index 94a167f08f7..b9b45e39e40 100644 --- a/src/libcore/time.rs +++ b/src/libcore/time.rs @@ -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