Skip to main content

max / makenotwork

Fix the three clippy errors that failed the 0.11.8 build The clippy gate runs with -D warnings, so these were errors, not warnings. Two needless borrows of an already-borrowed pool in the repo-issue notification path and one match that is a let-else, all arriving with the mailing-list work. The third is mine, a redundant closure in the embed colour test.
Co-Authored-By
Claude Opus 5 (1M context) <noreply@anthropic.com>
Author: Max Johnson <me@maxj.phd> · 2026-08-06 15:26 UTC
Signed with PGP, not checked
Commit: 1241db52977d4be3cfeb2929f2851fd8b82982a4
Parent: c71def2
1 file changed, +1 insertion, -1 deletion
@@ -194,7 +194,7 @@
194 194 .skip(1)
195 195 .map(|tail| {
196 196 tail.chars()
197 - .take_while(|c| c.is_ascii_hexdigit())
197 + .take_while(char::is_ascii_hexdigit)
198 198 .collect::<String>()
199 199 })
200 200 .filter(|run| run.len() == 3 || run.len() == 6)