remove some trailing whitespace

This commit is contained in:
Julius Rakow 2018-08-26 13:58:58 +02:00
parent cf67b161ce
commit 2a6103c29f
No known key found for this signature in database
GPG Key ID: 9AABD9B859435A93
1 changed files with 4 additions and 4 deletions

View File

@ -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<Self> {
@ -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<Self> {
@ -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<Self> {
@ -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<Self> {