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 {