From f87e2cb31b105de84b3fdfaa8e23bcd2a2726c7d Mon Sep 17 00:00:00 2001 From: Philipp Dresselmann Date: Thu, 12 Dec 2024 11:35:52 +0100 Subject: [PATCH] chore(doc): Fix module descriptions for length_prefix_encoding There's a more complete module description for the encoder and decoder now. Both versions get appended by rustdoc, which looks wrong and shouldn't be necessary. --- util/src/length_prefix_encoding/mod.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/util/src/length_prefix_encoding/mod.rs b/util/src/length_prefix_encoding/mod.rs index 5d32cf7..a4d5bf5 100644 --- a/util/src/length_prefix_encoding/mod.rs +++ b/util/src/length_prefix_encoding/mod.rs @@ -1,4 +1,2 @@ -/// Module that handles decoding functionality pub mod decoder; -/// Module that handles encoding functionality pub mod encoder;