remove some trailing whitespace
This commit is contained in:
parent
cf67b161ce
commit
2a6103c29f
|
@ -261,7 +261,7 @@ impl FromRuntimeValue for bool {
|
||||||
}
|
}
|
||||||
|
|
||||||
/// This conversion assumes that `i8` is represented as an [`I32`].
|
/// This conversion assumes that `i8` is represented as an [`I32`].
|
||||||
///
|
///
|
||||||
/// [`I32`]: enum.RuntimeValue.html#variant.I32
|
/// [`I32`]: enum.RuntimeValue.html#variant.I32
|
||||||
impl FromRuntimeValue for i8 {
|
impl FromRuntimeValue for i8 {
|
||||||
fn from_runtime_value(val: RuntimeValue) -> Option<Self> {
|
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`].
|
/// This conversion assumes that `i16` is represented as an [`I32`].
|
||||||
///
|
///
|
||||||
/// [`I32`]: enum.RuntimeValue.html#variant.I32
|
/// [`I32`]: enum.RuntimeValue.html#variant.I32
|
||||||
impl FromRuntimeValue for i16 {
|
impl FromRuntimeValue for i16 {
|
||||||
fn from_runtime_value(val: RuntimeValue) -> Option<Self> {
|
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`].
|
/// This conversion assumes that `u8` is represented as an [`I32`].
|
||||||
///
|
///
|
||||||
/// [`I32`]: enum.RuntimeValue.html#variant.I32
|
/// [`I32`]: enum.RuntimeValue.html#variant.I32
|
||||||
impl FromRuntimeValue for u8 {
|
impl FromRuntimeValue for u8 {
|
||||||
fn from_runtime_value(val: RuntimeValue) -> Option<Self> {
|
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`].
|
/// This conversion assumes that `u16` is represented as an [`I32`].
|
||||||
///
|
///
|
||||||
/// [`I32`]: enum.RuntimeValue.html#variant.I32
|
/// [`I32`]: enum.RuntimeValue.html#variant.I32
|
||||||
impl FromRuntimeValue for u16 {
|
impl FromRuntimeValue for u16 {
|
||||||
fn from_runtime_value(val: RuntimeValue) -> Option<Self> {
|
fn from_runtime_value(val: RuntimeValue) -> Option<Self> {
|
||||||
|
|
Loading…
Reference in New Issue