]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
managen: in man output, remove the leading space from examples
authorDaniel Stenberg <daniel@haxx.se>
Fri, 30 Aug 2024 06:54:19 +0000 (08:54 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 30 Aug 2024 08:09:48 +0000 (10:09 +0200)
Leave that rendering decision to the display tool.

Closes #14735

scripts/managen
tests/data/test1705

index 2a1c1d9f8e00fa37a95823e51dcde7375ead7709..df7663cd3e84df05bf2bfb61ced766c08a707018 100755 (executable)
@@ -803,7 +803,7 @@ sub single {
                 $e =~ s!\$URL!https://example.com!g;
                 # convert single backslahes to doubles
                 $e =~ s/\\/\\\\/g;
-                print " curl $e\n";
+                print "curl $e\n";
             }
             print ".fi\n";
         }
index 21bc70e3071ba339fab871f049f10ad2e04a7d93..6736d928c97f8908adc7f5ea7c3fcde0a1d53627 100644 (file)
@@ -234,7 +234,7 @@ Disable it again with \-\-no-fakeitreal.
 
 Example:
 .nf
- curl --verbose https://example.com
+curl --verbose https://example.com
 .fi
 
 This option is mutually exclusive with \fI\-\-trace\fP and \fI\-\-trace\-ascii\fP.
@@ -272,7 +272,7 @@ If --proto is provided several times, the last set value is used.
 
 Example:
 .nf
- curl --proto =http,https,sftp https://example.com
+curl --proto =http,https,sftp https://example.com
 .fi
 
 See also \fI-v, \-\-fakeitreal\fP and \fI\-\-proto\-default\fP.