From nobody Wed Oct 13 11:31:08 2021 X-Original-To: dev-commits-doc-all@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 6852617F3061 for ; Wed, 13 Oct 2021 11:31:09 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HTr2P1cGzz3snd; Wed, 13 Oct 2021 11:31:09 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 17EF72700C; Wed, 13 Oct 2021 11:31:09 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 19DBV98G041565; Wed, 13 Oct 2021 11:31:09 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 19DBV8LR041564; Wed, 13 Oct 2021 11:31:08 GMT (envelope-from git) Date: Wed, 13 Oct 2021 11:31:08 GMT Message-Id: <202110131131.19DBV8LR041564@gitrepo.freebsd.org> To: doc-committers@FreeBSD.org, dev-commits-doc-all@FreeBSD.org From: Mateusz Piotrowski <0mp@FreeBSD.org> Subject: git: 77a07a9384 - main - checkkey: Fix typos in comments List-Id: Commit messages for all branches of the doc repository List-Archive: https://lists.freebsd.org/archives/dev-commits-doc-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-doc-all@freebsd.org X-BeenThere: dev-commits-doc-all@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: 0mp X-Git-Repository: doc X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 77a07a9384a491311b2bcd6b47cd73ae8018f9e2 Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by 0mp: URL: https://cgit.FreeBSD.org/doc/commit/?id=77a07a9384a491311b2bcd6b47cd73ae8018f9e2 commit 77a07a9384a491311b2bcd6b47cd73ae8018f9e2 Author: Mateusz Piotrowski <0mp@FreeBSD.org> AuthorDate: 2021-10-13 11:30:35 +0000 Commit: Mateusz Piotrowski <0mp@FreeBSD.org> CommitDate: 2021-10-13 11:30:35 +0000 checkkey: Fix typos in comments Reported by: Pau Amma --- documentation/tools/checkkey.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/tools/checkkey.sh b/documentation/tools/checkkey.sh index deb7cbd640..c4772f13b3 100755 --- a/documentation/tools/checkkey.sh +++ b/documentation/tools/checkkey.sh @@ -80,8 +80,8 @@ fi # Now let's try to figure out what kind of thing we have as an ID. # We'll check for a keyid first, as it's readily distinguishable # from other things, but if we see that we have one, we push it back -# onto the argument list for later processing (becasue we may have -# been given a list of keyods). +# onto the argument list for later processing (because we may have +# been given a list of keys). if echo "${id}" | egrep -q '^[0-9A-F]{16}$'; then id_type="keyid" set -- "${id}" $@