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 BFB1F15800F for ; Sat, 7 Jan 2023 06:58:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0C435E082B; Sat, 7 Jan 2023 06:58:07 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 DD1F8E082B for ; Sat, 7 Jan 2023 06:58:06 +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 E0751340E9C for ; Sat, 7 Jan 2023 06:58:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C0CB7FC for ; Sat, 7 Jan 2023 06:58:04 +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: <1673074619.c215d99eb488df355bcd77f2da90474720636d6c.sam@gentoo> Subject: [gentoo-commits] proj/gentoolkit:master commit in: man/, pym/gentoolkit/eshowkw/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: man/eshowkw.1 pym/gentoolkit/eshowkw/__init__.py X-VCS-Directories: pym/gentoolkit/eshowkw/ man/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c215d99eb488df355bcd77f2da90474720636d6c X-VCS-Branch: master Date: Sat, 7 Jan 2023 06:58:04 +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: 704579e4-9e7f-459d-9873-0171ca864737 X-Archives-Hash: 1cc5d6704e5e451b9b70b86fccc3603f commit: c215d99eb488df355bcd77f2da90474720636d6c Author: Greg Kubaryk vt edu> AuthorDate: Sat Jan 7 06:46:59 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jan 7 06:56:59 2023 +0000 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=c215d99e eshowkw: Fix spelling error Signed-off-by: Greg Kubaryk vt.edu> Signed-off-by: Sam James gentoo.org> man/eshowkw.1 | 2 +- pym/gentoolkit/eshowkw/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/man/eshowkw.1 b/man/eshowkw.1 index 88b7917..20fc6e7 100644 --- a/man/eshowkw.1 +++ b/man/eshowkw.1 @@ -41,7 +41,7 @@ Search overlays (default: False) Display prefix keywords in output. (default: False) .TP .B \-S | \-\-ignore\-slot -Treat slots as irelevant during detection of redundant packages. (default: False) +Treat slots as irrelevant during detection of redundant packages. (default: False) .SH "BUGS" .LP Report bugs to . diff --git a/pym/gentoolkit/eshowkw/__init__.py b/pym/gentoolkit/eshowkw/__init__.py index ba6c076..ee58e8c 100644 --- a/pym/gentoolkit/eshowkw/__init__.py +++ b/pym/gentoolkit/eshowkw/__init__.py @@ -121,7 +121,7 @@ def process_args(argv): "--ignore-slot", action="store_true", default=False, - help="Treat slots as irelevant during detection of redundant packages.", + help="Treat slots as irrelevant during detection of redundant packages.", ) return parser.parse_args(args=argv)