docs: fix doc_lazy_continuation across the workspace

Eighteen markdown list items in module- and item-doc comments had
continuation lines that were not indented to align under the item
text, so rustdoc rendered them as separate paragraphs and broke the
list. Corrected the indentation (and, at two sites where a general
wrap-up sentence followed a sublist, separated it with a blank doc
line so it does not mis-attach to the last item). Doc whitespace only;
no prose reworded, no code changed.

Workspace clippy is now warning-clean.
This commit is contained in:
2026-06-02 02:34:40 +02:00
parent b5799640f8
commit 1be2c1f145
6 changed files with 17 additions and 15 deletions
+1
View File
@@ -2195,6 +2195,7 @@ fn locate_str_runtime() -> Result<PathBuf> {
/// 1. the directory containing the running `ail` binary, walked up /// 1. the directory containing the running `ail` binary, walked up
/// (handles `target/release/ail` and `target/debug/ail`). /// (handles `target/release/ail` and `target/debug/ail`).
/// 2. the current working directory, walked up. /// 2. the current working directory, walked up.
///
/// On miss, fails with `err_msg` verbatim — callers pass the /// On miss, fails with `err_msg` verbatim — callers pass the
/// byte-identical message their flag expects. /// byte-identical message their flag expects.
fn locate_runtime_file(filename: &str, err_msg: &str) -> Result<PathBuf> { fn locate_runtime_file(filename: &str, err_msg: &str) -> Result<PathBuf> {
+1
View File
@@ -30,6 +30,7 @@
//! a fully-concrete substitution; the source body is taken //! a fully-concrete substitution; the source body is taken
//! directly and rigid-var-substituted into a //! directly and rigid-var-substituted into a
//! `<name>__<type>…` fn. //! `<name>__<type>…` fn.
//!
//! The loop re-walks bodies added by the previous round, which is //! The loop re-walks bodies added by the previous round, which is
//! what closes it over chained class-method calls (e.g. //! what closes it over chained class-method calls (e.g.
//! `Eq.ne x y = not (eq x y)`). Targets are deduplicated within a //! `Eq.ne x y = not (eq x y)`). Targets are deduplicated within a