From 2a6103c29f4e2b4e7d91a4b85d824da8d8e7f430 Mon Sep 17 00:00:00 2001 From: Julius Rakow Date: Sun, 26 Aug 2018 13:58:58 +0200 Subject: [PATCH] remove some trailing whitespace --- src/value.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/value.rs b/src/value.rs index e938b13..26a5af1 100644 --- a/src/value.rs +++ b/src/value.rs @@ -261,7 +261,7 @@ impl FromRuntimeValue for bool { } /// This conversion assumes that `i8` is represented as an [`I32`]. -/// +/// /// [`I32`]: enum.RuntimeValue.html#variant.I32 impl FromRuntimeValue for i8 { fn from_runtime_value(val: RuntimeValue) -> Option { @@ -275,7 +275,7 @@ impl FromRuntimeValue for i8 { } /// This conversion assumes that `i16` is represented as an [`I32`]. -/// +/// /// [`I32`]: enum.RuntimeValue.html#variant.I32 impl FromRuntimeValue for i16 { fn from_runtime_value(val: RuntimeValue) -> Option { @@ -289,7 +289,7 @@ impl FromRuntimeValue for i16 { } /// This conversion assumes that `u8` is represented as an [`I32`]. -/// +/// /// [`I32`]: enum.RuntimeValue.html#variant.I32 impl FromRuntimeValue for u8 { fn from_runtime_value(val: RuntimeValue) -> Option { @@ -303,7 +303,7 @@ impl FromRuntimeValue for u8 { } /// This conversion assumes that `u16` is represented as an [`I32`]. -/// +/// /// [`I32`]: enum.RuntimeValue.html#variant.I32 impl FromRuntimeValue for u16 { fn from_runtime_value(val: RuntimeValue) -> Option {