Fix: Do NOT trim hyphens from start and end of potentially uncertain

times
This commit is contained in:
2026-09-25 12:43:17 +02:00
parent f7b25f111c
commit e474fdac90
+1 -1
View File
@@ -251,7 +251,7 @@ final class NodaUncertaintyHelper {
*/ */
public static function trim(string $input):string { public static function trim(string $input):string {
return \trim($input, ", \t\n\r\n;-:"); return \trim($input, ", \t\n\r\n;:");
} }