From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS24940 162.55.0.0/16 X-Spam-Status: No, score=-3.2 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_PASS,SPF_PASS, T_SCC_BODY_TEXT_LINE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from algol.kleine-koenig.org (algol.kleine-koenig.org [162.55.41.232]) (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) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id BD3911F727 for ; Fri, 1 Jul 2022 14:04:25 +0000 (UTC) Authentication-Results: dcvr.yhbt.net; dkim=pass (2048-bit key; unprotected) header.d=kleine-koenig.org header.i=@kleine-koenig.org header.b="Tb315EaP"; dkim-atps=neutral Received: by algol.kleine-koenig.org (Postfix, from userid 1000) id 7F369499B2F; Fri, 1 Jul 2022 16:04:23 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kleine-koenig.org; s=2022; t=1656684263; bh=657zlsRK1IdKu5G60caPxS93C85gUNmBYUNtFx++Gok=; h=From:To:Subject:Date:From; b=Tb315EaPPTWSvGaqFJsDANcNQd3Q6AVfP7b+AWCkQHm98P+iwKSVzJMQIdujE+ViX 7S9tQqzIcSe+n2d9B4zV++S++/tVA45kW6iBcJ/+qbuL/6ocAiXcPGV5E3TOHj4WKc Dod0fo+uRkTUd4obt2KxB+KuCOusW4mY7h/iIdsvRG8Ft1rbIs4A4woTg1bJw/wTzw O0QyoxrborMoLcNEFaOg22V9MUnmAv81BD9xyRJ0876mrqrqsxaFH40ITcPHz10EWh fiELjHoYvYHZTsEe2sonaJy8KD2/STzSaEkbIUSL/CFdHcBF65TT0Tb17i8OmEu8pt zgFUxwieaGnpA== From: =?UTF-8?q?Uwe=20Kleine-K=C3=B6nig?= To: meta@public-inbox.org Subject: [PATCH] tree-wide: Fix typo likelyhood Date: Fri, 1 Jul 2022 16:04:20 +0200 Message-Id: <20220701140420.278395-1-uwe@kleine-koenig.org> X-Mailer: git-send-email 2.36.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: This was pointed out by the Debian package linter "lintian". --- Documentation/lei-up.pod | 2 +- Documentation/technical/memory.txt | 2 +- lib/PublicInbox/LeiQuery.pm | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation/lei-up.pod b/Documentation/lei-up.pod index 8fba0953b1ef..ac644a9693fc 100644 --- a/Documentation/lei-up.pod +++ b/Documentation/lei-up.pod @@ -26,7 +26,7 @@ updates remote mailboxes (currently C and C). Look for mail older than the time of the last successful query. Using a small interval will reduce bandwidth use. A larger -interval reduces the likelyhood of missing a result due to MTA +interval reduces the likelihood of missing a result due to MTA delays or downtime. The time(s) of the last successful queries are the C diff --git a/Documentation/technical/memory.txt b/Documentation/technical/memory.txt index bb1c92fde1e7..ea7fb7b710e1 100644 --- a/Documentation/technical/memory.txt +++ b/Documentation/technical/memory.txt @@ -13,7 +13,7 @@ deterministically release memory back to the heap. We start with a simple data model with few circular references. This both eases human understanding and reduces -the likelyhood of bugs. +the likelihood of bugs. Knowing the relative sizes and quantities of our data structures, we limit the scope of allocations as much as diff --git a/lib/PublicInbox/LeiQuery.pm b/lib/PublicInbox/LeiQuery.pm index 51ee3d9c83e4..c998e5c0ed7b 100644 --- a/lib/PublicInbox/LeiQuery.pm +++ b/lib/PublicInbox/LeiQuery.pm @@ -185,7 +185,7 @@ sub _complete_q { # FIXME: Getopt::Long doesn't easily let us support support options with # '.' in them (e.g. --http1.1) # TODO: should we depend on "-c http.*" options for things which have -# analogues in git(1)? that would reduce likelyhood of conflicts with +# analogues in git(1)? that would reduce likelihood of conflicts with # our other CLI options # Note: some names are renamed to avoid potential conflicts, # see %lei2curl in lib/PublicInbox/LeiCurl.pm base-commit: 70209c643bd5b21d369dff684218714f5186993b -- 2.36.1