Skip to content

Commit b439740

Browse files
committed
f sp
1 parent 06e87c9 commit b439740

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightning/src/util/ser.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ impl Readable for BigSize {
386386
/// The lightning protocol uses u16s for lengths in most cases. As our serialization framework
387387
/// primarily targets that, we must as well. However, because we may serialize objects that have
388388
/// more than 65K entries, we need to be able to store larger values. Thus, we define a variable
389-
/// length integer here which is backwards-compatible but treats 0xffff as "read eight more bytes".
389+
/// length integer here that is backwards-compatible but treats 0xffff as "read eight more bytes".
390390
///
391391
/// To ensure we only have one valid encoding per value, we add 0xffff to values written as eight
392392
/// bytes. Thus, 0xfffe is serialized as 0xfffe, whereas 0xffff is serialized as

0 commit comments

Comments
 (0)