Skip to content

Commit 0ee7b7f

Browse files
committed
f docs
1 parent f53ffec commit 0ee7b7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightning/src/util/ser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ impl<T: Readable> Readable for OptionDeserWrapper<T> {
268268
}
269269
/// When handling default_values, we want to map the default-value T directly
270270
/// to a OptionDeserWrapper<T> in a way that works for `field: T = t;` as
271-
/// well. Thus, we use assume `Into<T> for T` does nothing and use that.
271+
/// well. Thus, we assume `Into<T> for T` does nothing and use that.
272272
impl<T: Readable> From<T> for OptionDeserWrapper<T> {
273273
fn from(t: T) -> OptionDeserWrapper<T> { OptionDeserWrapper(Some(t)) }
274274
}

0 commit comments

Comments
 (0)