diff --git a/lightning/src/util/ser.rs b/lightning/src/util/ser.rs index 1c08e8abff9..fc795f9dd67 100644 --- a/lightning/src/util/ser.rs +++ b/lightning/src/util/ser.rs @@ -268,7 +268,7 @@ impl Readable for OptionDeserWrapper { } /// When handling default_values, we want to map the default-value T directly /// to a OptionDeserWrapper in a way that works for `field: T = t;` as -/// well. Thus, we use assume `Into for T` does nothing and use that. +/// well. Thus, we assume `Into for T` does nothing and use that. impl From for OptionDeserWrapper { fn from(t: T) -> OptionDeserWrapper { OptionDeserWrapper(Some(t)) } }