From e12b0a0a159d55b717f42b8881ffd4d1f2fade32 Mon Sep 17 00:00:00 2001 From: Jeffrey Czyz Date: Mon, 23 Jan 2023 22:19:03 -0600 Subject: [PATCH] f - fix comment --- fuzz/src/invoice_deser.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fuzz/src/invoice_deser.rs b/fuzz/src/invoice_deser.rs index 4adcdd31987..a5689fb81de 100644 --- a/fuzz/src/invoice_deser.rs +++ b/fuzz/src/invoice_deser.rs @@ -14,8 +14,7 @@ use std::convert::TryFrom; #[inline] pub fn do_test(data: &[u8], _out: Out) { - // Only check that de-serialization works; serialization simply copies the de-serialized bytes, - // so no need to check the full round trip. + // Serialization simply copies the de-serialized bytes, so no need to check the full round trip. if let Ok(invoice) = Invoice::try_from(data.to_vec()) { let mut bytes = Vec::with_capacity(data.len()); invoice.write(&mut bytes).unwrap();