From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BBB7C15802E for ; Tue, 25 Jun 2024 04:06:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 05B14E2A16; Tue, 25 Jun 2024 04:06:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D3908E2A16 for ; Tue, 25 Jun 2024 04:06:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 14404335D75 for ; Tue, 25 Jun 2024 04:06:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A469F1D4B for ; Tue, 25 Jun 2024 04:06:55 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1719177555.cd943e5ff05dcf221c5137720a902b620e23a54f.sam@gentoo> Subject: [gentoo-commits] proj/gentoo-functions:master commit in: / X-VCS-Repository: proj/gentoo-functions X-VCS-Files: functions.sh X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: cd943e5ff05dcf221c5137720a902b620e23a54f X-VCS-Branch: master Date: Tue, 25 Jun 2024 04:06:55 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ba98416d-fe04-4bf4-89f2-dfc1976d3fac X-Archives-Hash: 17614c3d4df1c7d5be0e775b1fc7ea2e commit: cd943e5ff05dcf221c5137720a902b620e23a54f Author: Kerin Millar plushkava net> AuthorDate: Sun Jun 23 20:02:00 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jun 23 21:19:15 2024 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-functions.git/commit/?id=cd943e5f Rectify several typos among the comments Signed-off-by: Kerin Millar plushkava.net> functions.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/functions.sh b/functions.sh index d80a49c..55b6c3e 100644 --- a/functions.sh +++ b/functions.sh @@ -132,7 +132,7 @@ is_identifier() # # Determines whether the first parameter is a valid integer. A leading -# shall be permitted. Thereafter, leading zeroes shall not be +# shall be permitted. Thereafter, leading zeroes shall not be # permitted because the string might later be considered to be octal in an # arithmetic context, causing the shell to exit if the number be invalid. # @@ -176,10 +176,10 @@ is_anyof() # # Collects the intersection of the parameters up to - but not including - a # sentinel value then determines whether the resulting set is a subset of the -# interection of the remaining parameters. If the SENTINEL variable is set and +# intersection of the remaining parameters. If the SENTINEL variable is set and # non-empty, it shall be taken as the value of the sentinel. Otherwise, the # value of the sentinel shall be defined as . If the -# sentinel value is not encountered or if either set is empty then the returm +# sentinel value is not encountered or if either set is empty then the return # value shall be greater than 1. # is_subset() @@ -422,7 +422,7 @@ warn() # # Considers the first parameter as the potential name of an executable regular -# file before attempting to locate it. If not specifed as an absolute pathname, +# file before attempting to locate it. If not specified as an absolute pathname, # a PATH search shall be performed in accordance with the Environment Variables # section of the Base Definitions. If an executable is found, its path shall be # printed. Otherwise, the return value shall be 1. This function is intended as