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: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF, T_SCC_BODY_TEXT_LINE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 080CD1F729 for ; Fri, 13 May 2022 00:40:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1652402439; bh=Rp//6eiMbO9KB+bf4rMU0iGt+VvKbZibkft73rdTLPI=; h=From:To:Subject:Date:In-Reply-To:References:From; b=viB3n85XLKBTI14XGhbDJLP5fm9pyZm+bgxlcTewsTbqW2T0O9xLhF2eis9rqZQbH HxqgQ2SSK3r/OWaLWw6Ncr1pLgplmq7b887MgM6rpiYgmSwp1ob8jab2klWMmLjc1D UVN2dYEGe+TzW42dsNQ/p0yC2FL51asQXcTyRN0k= From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 2/2] imapd: update comment for PublicInbox::ConfigIter Date: Fri, 13 May 2022 00:40:38 +0000 Message-Id: <20220513004038.30026-3-e@80x24.org> In-Reply-To: <20220513004038.30026-1-e@80x24.org> References: <20220513004038.30026-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: config enumeration was split out to a separate class a long time ago. --- lib/PublicInbox/IMAPD.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/PublicInbox/IMAPD.pm b/lib/PublicInbox/IMAPD.pm index 661d6537..d8814324 100644 --- a/lib/PublicInbox/IMAPD.pm +++ b/lib/PublicInbox/IMAPD.pm @@ -94,7 +94,7 @@ sub imapd_refresh_finalize { } } -sub imapd_refresh_step { # pi_cfg->iterate_start cb +sub imapd_refresh_step { # PublicInbox::ConfigIter cb my ($pi_cfg, $section, $imapd) = @_; if (defined($section)) { return if $section !~ m!\Apublicinbox\.([^/]+)\z!;