From 4f351c10ca099e2ccaa17a646754e7379cbf3e01 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Wed, 26 Aug 2026 22:23:46 -0400 Subject: [PATCH] core: rustfmt wraps the chain in the tag-span grammar test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `cargo fmt --all --check`, the only failing gate on d9e5753 — clippy, all 148 tests and every other lane were green. The line was 96 characters, under the 100 max_width, but a chain is held to `chain_width` (60% of it). Co-Authored-By: Claude Opus 5 --- core/src/local/derive.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/src/local/derive.rs b/core/src/local/derive.rs index dcacbc5..af96e6a 100644 --- a/core/src/local/derive.rs +++ b/core/src/local/derive.rs @@ -520,7 +520,10 @@ mod tests { #[test] fn tag_spans_agree_with_extract_tags_about_what_a_tag_is() { let body = "#1 nope a#b no but #Yes ##no"; - let names: Vec = extract_tag_spans(body).into_iter().map(|t| t.name).collect(); + let names: Vec = extract_tag_spans(body) + .into_iter() + .map(|t| t.name) + .collect(); assert_eq!(names, extract_tags(body)); }