about summary refs log tree commit diff
path: root/src/libcore/num
diff options
context:
space:
mode:
authorSimon Heath <icefoxen@gmail.com>2019-01-31 21:47:18 -0500
committerSimon Sapin <simon.sapin@exyr.org>2019-02-27 16:02:25 +0100
commitc1d1c6731c22a2840eecd72b9bfb4ffc6f05647b (patch)
tree2c88f7a898d35129abaaac34fe3707ac34dcafcc /src/libcore/num
parent12532277d5bde13c19d3b40d34c07ec78c79ff71 (diff)
downloadrust-c1d1c6731c22a2840eecd72b9bfb4ffc6f05647b.tar.gz
rust-c1d1c6731c22a2840eecd72b9bfb4ffc6f05647b.zip
Fix a bunch of heckin' trailing whitespace
Diffstat (limited to 'src/libcore/num')
-rw-r--r--src/libcore/num/mod.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libcore/num/mod.rs b/src/libcore/num/mod.rs
index 39a1b48e076..d8e230abaf9 100644
--- a/src/libcore/num/mod.rs
+++ b/src/libcore/num/mod.rs
@@ -4564,7 +4564,7 @@ macro_rules! try_from_lower_bounded {
 
             /// Try to create a target number type from a
             /// source type that has `source::MIN > dest::MIN`.
-            /// Will return an error if `source` is less than 
+            /// Will return an error if `source` is less than
             /// `dest::MIN`.
             #[inline]
             fn try_from(u: $source) -> Result<$target, TryFromIntError> {
@@ -4587,7 +4587,7 @@ macro_rules! try_from_upper_bounded {
 
             /// Try to create a target number type from a
             /// source type that has `source::MAX > dest::MAX`.
-            /// Will return an error if `source` is greater than 
+            /// Will return an error if `source` is greater than
             /// `dest::MAX`.
             #[inline]
             fn try_from(u: $source) -> Result<$target, TryFromIntError> {
@@ -4609,9 +4609,9 @@ macro_rules! try_from_both_bounded {
             type Error = TryFromIntError;
 
             /// Try to "narrow" a number from the source type
-            /// to the target type.  Will return an error if 
-            /// the source value is either larger than the 
-            /// `MAX` value for the target type or smaller 
+            /// to the target type.  Will return an error if
+            /// the source value is either larger than the
+            /// `MAX` value for the target type or smaller
             /// than the `MIN` value for it.
             #[inline]
             fn try_from(u: $source) -> Result<$target, TryFromIntError> {