Skip to content

Commit 9373fb5

Browse files
authored
Correct capitalization of 'public key'
1 parent 069f07d commit 9373fb5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

practices/guides/commit-signing.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@ If you have already committed and need to retrospectively sign commits, follow t
4747
1. Review your inputs and press enter `O` to confirm
4848
1. Define a passphrase for the key
4949

50-
1. Test the key is visible and export the PGP PUBLIC KEY (to your clipboard):
50+
1. Test the key is visible and export the PGP public key (to your clipboard):
5151

5252
```bash
5353
gpg -k # This should list the new key
5454
gpg --armor --export <my_email_address> | pbcopy
5555
```
5656

57-
> Your PGP PUBLIC KEY is now in your clipboard!
57+
> Your PGP public key is now in your clipboard!
5858

5959
1. [Add the public key to your GitHub account](https://github.com/settings/gpg/new) (`Settings` -> `SSH and GPG keys` -> `New GPG key`)
6060

@@ -106,14 +106,14 @@ If you have already committed and need to retrospectively sign commits, follow t
106106
1. Review your inputs and press enter `O` to confirm
107107
1. A new window called pinentry will appear prompting you to enter a passphrase.
108108
109-
1. Test the key is visible and export the PGP PUBLIC KEY (to your clipboard):
109+
1. Test the key is visible and export the PGP public key (to your clipboard):
110110
111111
```bash
112112
gpg -k # This should list the new key
113113
gpg --armor --export <my_email_address> | clip
114114
```
115115
116-
> Your PGP PUBLIC KEY is now in your clipboard!
116+
> Your PGP public key is now in your clipboard!
117117
118118
1. [Add the public key to your GitHub account](https://github.com/settings/gpg/new) (`Settings` -> `SSH and GPG keys` -> `New GPG key`)
119119

0 commit comments

Comments
 (0)