]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
spellcheck: adapt to backslashed minuses
authorDaniel Stenberg <daniel@haxx.se>
Fri, 11 Aug 2023 21:51:15 +0000 (23:51 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 12 Aug 2023 09:10:21 +0000 (11:10 +0200)
As the curl.1 has more backslashed minus, the cleanup sed lines xneed to
adapt.

Adjusted some docs slighly.

Follow-up to 439ff2052e

Closes #11663

.github/scripts/spellcheck.words
.github/workflows/spellcheck.yml
docs/cmdline-opts/login-options.d
docs/cmdline-opts/mail-rcpt.d
docs/cmdline-opts/output.d
docs/cmdline-opts/request.d

index f598dbc02f38fc42d82b7b6eec77e69ad074699d..4308c90f2d9f474582146173ec8b14813249773f 100644 (file)
@@ -853,6 +853,8 @@ Viktor
 VM
 VMS
 VMware
+VRF
+VRFY
 VSE
 vsprintf
 vt
index fa644a44b85944573a0f1fdfa9fb0c108833e7d0..1e4370772271bb045c230bbeadb9986bda289129 100644 (file)
@@ -54,7 +54,7 @@ jobs:
     - name: trim the curl.1 markdown file
       run: |
         perl -pi -e 's/^    .*//' docs/curl.md
-        perl -pi -e 's/--[a-z0-9-]*//ig' docs/curl.md
+        perl -pi -e 's/\-\-[\a-z0-9-]*//ig' docs/curl.md
         perl -pi -e 's!https://[a-z0-9%/.-]*!!ig' docs/curl.md
 
     - name: setup the custom wordlist
index 62ee0814141f123b30040e6ec51b6d94a76b352b..05436a88cec00726a180cf272202c6fc0a73bbd3 100644 (file)
@@ -13,9 +13,10 @@ Multi: single
 Specify the login options to use during server authentication.
 
 You can use login options to specify protocol specific options that may be
-used during authentication. At present only IMAP, POP3 and SMTP support
-login options. For more information about login options please see RFC
-2384, RFC 5092 and the IETF draft **draft-earhart-url-smtp-00.txt**.
+used during authentication. At present only IMAP, POP3 and SMTP support login
+options. For more information about login options please see RFC 2384,
+RFC 5092 and the IETF draft
+https://datatracker.ietf.org/doc/html/draft-earhart-url-smtp-00.
 
 Since 8.2.0, IMAP supports the login option "AUTH=+LOGIN". With this option,
 curl uses the plain (not SASL) LOGIN IMAP command even if the server advertises
index 5b5036b5701d390e1f27c4495cfa92e439d6ba64..a4b16c4f7b068790ca0a421be9455743db7d5e53 100644 (file)
@@ -13,7 +13,7 @@ Multi: append
 Specify a single email address, user name or mailing list name. Repeat this
 option several times to send to multiple recipients.
 
-When performing an address verification (*VRFY* command), the recipient should be
+When performing an address verification (**VRFY** command), the recipient should be
 specified as the user name or user name and domain (as per Section 3.5 of
 RFC 5321). (Added in 7.34.0)
 
index eedb9b632d9749715e11459e8445ad576e333599..4f4a8a453d53d3b145158bd6b5268227082164f2 100644 (file)
@@ -28,13 +28,13 @@ You may use this option as many times as the number of URLs you have. For
 example, if you specify two URLs on the same command line, you can use it like
 this:
 
 curl -o aa example.com -o bb example.net
+ curl -o aa example.com -o bb example.net
 
 and the order of the -o options and the URLs does not matter, just that the
 first -o is for the first URL and so on, so the above command line can also be
 written as
 
 curl example.com example.net -o aa -o bb
+ curl example.com example.net -o aa -o bb
 
 See also the --create-dirs option to create the local directories
 dynamically. Specifying the output as '-' (a single dash) will force the
@@ -42,8 +42,8 @@ output to be done to stdout.
 
 To suppress response bodies, you can redirect output to /dev/null:
 
 curl example.com -o /dev/null
+ curl example.com -o /dev/null
 
-Or for Windows use **nul**:
+Or for Windows:
 
 curl example.com -o nul
+ curl example.com -o nul
index 4e5c8be40127431e223445f44d6b31b2170e5447..5c01c6b4d662a39af44226e0e1be724be1290968 100644 (file)
@@ -46,6 +46,6 @@ Specifies a custom POP3 command to use instead of *LIST* or *RETR*.
 Specifies a custom IMAP command to use instead of *LIST*. (Added in 7.30.0)
 .TP
 **SMTP**
-Specifies a custom SMTP command to use instead of *HELP* or *VRFY*. (Added in 7.34.0)
+Specifies a custom SMTP command to use instead of *HELP* or **VRFY**. (Added in 7.34.0)
 .RE
 .IP