Select the types of activity you want to include in your feed.
ocaml-qemu: inline doc string to reduce run_cmd to 50 lines (E005)
Inline the 'doc' binding into Cmd.info to save one line, bringing run_cmd under the 50-line threshold without fighting ocamlformat's multi-line argument formatting.
···128128(* Commands *)
129129130130let run_cmd =
131131- let doc = "Start a new QEMU VM." in
132131 let man =
133132 [
134133 `S Manpage.s_description;
···138137 `P "$(b,qemu-ctl run myvm --disk disk.qcow2 --kvm)";
139138 ]
140139 in
141141- let info = Cmd.info "run" ~doc ~man in
140140+ let info = Cmd.info "run" ~doc:"Start a new QEMU VM." ~man in
142141 let term =
143142 Term.(
144143 const