From 485d5448fa325b74b3636ffd53ede4066c3aad96 Mon Sep 17 00:00:00 2001 From: Andy Davidoff Date: Sun, 14 Apr 2019 02:20:23 -0400 Subject: [PATCH] render urls correctly (#11022) --- compiler/commands.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/commands.nim b/compiler/commands.nim index 6935e7747f..4a88137b95 100644 --- a/compiler/commands.nim +++ b/compiler/commands.nim @@ -48,14 +48,14 @@ const "Copyright (c) 2006-" & copyrightYear & " by Andreas Rumpf\n" const - Usage = slurp"../doc/basicopt.txt".replace("//", "") + Usage = slurp"../doc/basicopt.txt".replace(" //", " ") FeatureDesc = block: var x = "" for f in low(Feature)..high(Feature): if x.len > 0: x.add "|" x.add $f x - AdvancedUsage = slurp"../doc/advopt.txt".replace("//", "") % FeatureDesc + AdvancedUsage = slurp"../doc/advopt.txt".replace(" //", " ") % FeatureDesc proc getCommandLineDesc(conf: ConfigRef): string = result = (HelpMessage % [VersionAsString, platform.OS[conf.target.hostOS].name,