From 568baf3d021bd179ee3c230323984b81c7fc19a6 Mon Sep 17 00:00:00 2001 From: Tanayk07 Date: Tue, 17 Mar 2026 11:34:23 +0530 Subject: [PATCH] fix: align banner right-side border to consistent 64-char width --- hscontrol/types/config.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/hscontrol/types/config.go b/hscontrol/types/config.go index 35744736..bc0c9e1e 100644 --- a/hscontrol/types/config.go +++ b/hscontrol/types/config.go @@ -862,7 +862,7 @@ func warnBanner(lines []string) { b.WriteString("### ###\n") for _, line := range lines { - b.WriteString(fmt.Sprintf("### %-56s ###\n", line)) + b.WriteString(fmt.Sprintf("### %-54s ###\n", line)) } b.WriteString("### ###\n") @@ -968,8 +968,9 @@ func LoadServerConfig() (*Config, error) { "Please revert your prefixes to subsets of the standard", "ranges as described in the example configuration.", "", - "Any issue raised using a range outside of the supported", - "range will be labelled as wontfix and closed.", + "Any issue raised using a range outside of the", + "supported range will be labelled as wontfix", + "and closed.", }) }