From bf26a256e8f75e3d75a974a688bd99df6cd61149 Mon Sep 17 00:00:00 2001 From: MechaCat02 Date: Tue, 2 Jun 2026 20:35:47 +0200 Subject: [PATCH] chore: cargo fmt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Single-line collapse in DocsServiceImpl::delete's $in match arm flagged by `cargo fmt --check` post-review. The v1 HANDBACK §8 claimed `cargo fmt --check` was green; that claim was false against HEAD at audit time. This fixes the diff so all three gates exit 0 on a fresh checkout. The follow-up HANDBACK update replaces §8's false attestation with a post-fix one. Co-Authored-By: Claude Opus 4.7 (1M context) --- crates/manager-core/src/docs_service.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/manager-core/src/docs_service.rs b/crates/manager-core/src/docs_service.rs index 7c58351..a15bd68 100644 --- a/crates/manager-core/src/docs_service.rs +++ b/crates/manager-core/src/docs_service.rs @@ -453,8 +453,7 @@ mod tests { let Some(arr) = cond.value.as_array() else { return false; }; - arr.iter() - .any(|v| actual == json_text(v).as_deref()) + arr.iter().any(|v| actual == json_text(v).as_deref()) } } }