From 0b4b1835f6b0d650aa643da59b5664296b44189b Mon Sep 17 00:00:00 2001 From: LColman-ANZx <139435353+LColman-ANZx@users.noreply.github.com> Date: Sat, 22 Jul 2023 02:18:01 +1000 Subject: [PATCH] Fix less-than signs in copy-ssh-public-key.md (#26937) --- data/reusables/gpg/copy-ssh-public-key.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/reusables/gpg/copy-ssh-public-key.md b/data/reusables/gpg/copy-ssh-public-key.md index 6824a35ddc..d592fbef5f 100644 --- a/data/reusables/gpg/copy-ssh-public-key.md +++ b/data/reusables/gpg/copy-ssh-public-key.md @@ -4,7 +4,7 @@ {% mac %} ```shell - $ pbcopy < ~/.ssh/id_{% ifversion ghae %}rsa{% else %}ed25519{% endif %}.pub + $ pbcopy < ~/.ssh/id_{% ifversion ghae %}rsa{% else %}ed25519{% endif %}.pub # Copies the contents of the id_{% ifversion ghae %}rsa{% else %}ed25519{% endif %}.pub file to your clipboard ``` @@ -17,7 +17,7 @@ {% windows %} ```shell - $ clip < ~/.ssh/id_{% ifversion ghae %}rsa{% else %}ed25519{% endif %}.pub + $ clip < ~/.ssh/id_{% ifversion ghae %}rsa{% else %}ed25519{% endif %}.pub # Copies the contents of the id_{% ifversion ghae %}rsa{% else %}ed25519{% endif %}.pub file to your clipboard ```