fix(rust): drop the stray spaces in the running-server handoff line
All checks were successful
PR Checks / rust-gates (pull_request) Successful in 57s

The D156 line printed "confirms it                  connected." — a
wrapped source line left a run of spaces inside the string literal.
Found by the phase 18 step 7 re-walk on Debian 12.

Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01E14m6SuuY6i1vASFeGDBeY
This commit is contained in:
2026-09-26 10:09:33 -05:00
parent dc3d360cf2
commit d61f46ffb6

View File

@@ -185,7 +185,7 @@ pub fn handoff(
protocol = doc.protocol, protocol = doc.protocol,
when = if running { when = if running {
format!( format!(
"The plugin loads now; `doctor --game rust --server-id {server_id}` confirms it connected." "The plugin loads now; `doctor --game rust --server-id {server_id}` confirms it connected."
) )
} else { } else {
"The plugin connects when the server next starts.".to_string() "The plugin connects when the server next starts.".to_string()