Fix a longstanding typo in the Markdown manpage examples
Marco Ricci

Marco Ricci commited on 2026-02-08 21:01:20
Zeige 1 geänderte Dateien mit 2 Einfügungen und 2 Löschungen.


Apparently, this is a copy-and-paste error from the PDF rendering of the
manpage when it was originally converted to Markdown: while the PDF
*looked* correct, the text layer was not, and so the pasted text was
also out-of-order.
... ...
@@ -322,12 +322,12 @@ This is a property specific to the key type, and sometimes the agent used:
322 322
     Select an SSH key from the available suitable SSH keys in the running SSH agent, then generate a passphrase for the `example.com` service using the previously selected SSH key.
323 323
     The passphrase will have (standard) length 20, and at least nine characters will be uppercase characters and at least another nine characters will be lowercase characters.
324 324
 
325
-??? example "`derivepassphrase example.com vault --key --upper 9 --lower 9 --number 9`"
325
+??? example "`derivepassphrase vault --key --upper 9 --lower 9 --number 9 example.com`"
326 326
 
327 327
     Attempt to generate a passphrase as in the previous example.
328 328
     This example will <em>error out</em>, because the passphrase constraints require at least 27 characters and the standard passphrase length 20 cannot accomodate this.
329 329
 
330
-??? example "`derivepassphrase --config vault --key --upper 9 --lower 9 --space 2`"
330
+??? example "`derivepassphrase vault --config --key --upper 9 --lower 9 --space 2`"
331 331
 
332 332
     After selecting an SSH key, configure the default settings to use exactly nine uppercase characters, nine lowercase characters, and two spaces for each generated passphrase.
333 333
     (The specific service settings, or the command-line invocation, can still override these settings.)
334 334