From a5745dd72780b803f86a620cae479d56249049e7 Mon Sep 17 00:00:00 2001 From: Brian Rosmaita Date: Thu, 2 May 2024 08:55:32 -0400 Subject: [PATCH] Fix typo in create-gpg-keys doc Remove the extra hyphen so that the option in the example is correctly stated as ``--keyid-format``. Authoritative source: https://github.com/gpg/gnupg/blob/516b5301262e21396343aa5a1dbc0f1bf0f3e9bf/doc/gpg.texi#L2090 --- modules/ROOT/pages/create-gpg-keys.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/pages/create-gpg-keys.adoc b/modules/ROOT/pages/create-gpg-keys.adoc index b0b1bd1..a66bb1b 100644 --- a/modules/ROOT/pages/create-gpg-keys.adoc +++ b/modules/ROOT/pages/create-gpg-keys.adoc @@ -171,7 +171,7 @@ This represents the 64 lower-order bits of your fingerprint, which is sufficient The `gpg` program makes it easy for you to find your key's long GPG key ID: ---- -gpg --list-keys --fingerprint --key-id-format 0xlong johndoe@example.com +gpg --list-keys --fingerprint --keyid-format 0xlong johndoe@example.com ---- The `0xlong` format prepends "0x" to the key ID to make it clear that this is a series of hexadecimal digits; it is considered good practice to do this.