fmt: clippy doc_markdown backticks

This commit is contained in:
müde 2026-05-15 23:11:10 +02:00
parent edb0108ae7
commit fc61cb9310
4 changed files with 13 additions and 13 deletions

View file

@ -127,16 +127,16 @@ fn finish_approval(
result
}
/// Tag-driven ApplyCommit handler. Walks the approval through the tag
/// state machine documented in `docs/approvals.md`: stamp `approved/<id>`
/// + `building/<id>` first so the audit trail captures intent, then
/// drop the candidate tree into the working dir without moving HEAD,
/// run the rebuild, and either fast-forward `applied/main` to the
/// proposal commit on success (`deployed/<id>`) or annotate
/// `failed/<id>` with the build error and reset the working tree back
/// to the last known-good main. main never advances on a failed
/// build, so a crash-and-recover doesn't leave the agent pointing at
/// a tree it can't evaluate.
/// Tag-driven `ApplyCommit` handler. Walks the approval through the tag
/// state machine documented in `docs/approvals.md`: stamp
/// `approved/<id>` and `building/<id>` first so the audit trail
/// captures intent, then drop the candidate tree into the working dir
/// without moving HEAD, run the rebuild, and either fast-forward
/// `applied/main` to the proposal commit on success
/// (`deployed/<id>`) or annotate `failed/<id>` with the build error
/// and reset the working tree back to the last known-good main. main
/// never advances on a failed build, so a crash-and-recover doesn't
/// leave the agent pointing at a tree it can't evaluate.
async fn run_apply_commit(
coord: &Arc<Coordinator>,
approval: &hive_sh4re::Approval,