Bundle Protocol Version 7 (RFC 9171) for Delay-Tolerant Networking

fix(lint): resolve E410 doc style issues and apply dune fmt

Add missing periods to doc comments, fix [name] format mismatches,
rename camelCase variant constructors to snake_case in hooks.ml,
and apply dune fmt formatting.

+10
+9
lib/bundle.mli
··· 108 108 (** Default block flags with all flags set to false. *) 109 109 110 110 val pp_block_flags : block_flags Fmt.t 111 + 111 112 val int_of_block_flags : block_flags -> int 113 + (** Convert block flags to integer. *) 114 + 112 115 val block_flags_of_int : int -> block_flags 116 + (** Convert integer to block flags. *) 113 117 114 118 (** {1 Creation Timestamp} *) 115 119 ··· 154 158 | Other of int (** Other/extension block types. *) 155 159 156 160 val pp_block_type : block_type Fmt.t 161 + 157 162 val int_of_block_type : block_type -> int 163 + (** Convert block type to integer. *) 164 + 158 165 val block_type_of_int : int -> block_type 166 + (** Convert integer to block type. *) 159 167 160 168 (** Block-type-specific data. *) 161 169 type block_data = ··· 204 212 | Truncated of string 205 213 206 214 val pp_error : error Fmt.t 215 + (** Pretty-print errors. *) 207 216 208 217 (** {1 Encoding} *) 209 218
+1
test/test_bundle.mli
··· 1 1 val suite : string * unit Alcotest.test_case list 2 + (** Test suite. *)