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: AS16276 91.121.0.0/16 X-Spam-Status: No, score=-3.5 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_HI, RCVD_IN_MSPIKE_H4,RCVD_IN_MSPIKE_WL,SPF_HELO_NONE,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from out1.migadu.com (out1.migadu.com [91.121.223.63]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id DD85A1F934 for ; Mon, 17 May 2021 03:35:45 +0000 (UTC) X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kyleam.com; s=key1; t=1621222543; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=rLp7pNp7ni3ZOLm6p0QUNjObdVjZu+ei3bmQZtetnTY=; b=r9BIZTa18B74raSfZ4IPhV3FSihhnzY+8nLRIKpVwmClhWfhllwcZxyoYayzQ+H2MTzw6q /vuLAfgdYwJTWJurI51Ws4L6r16LOgiCu56Sb7oZaiLdDWnD9CgDfAuQ2NdH1/q8cll6JI 72m2vw6gyb3VLy0t0Pj3EPn7mY6WoouDTp8wAIk84NbSRE9ChbQ/uP9Ir+jO51P2i9njwX Xw0+BuO2JkDIAJX+rscDRP7t48lGc49JxOGYyK7ZwAsIPQaDfV361sF0fGEhd4x2MbKemI 4vsTewNcCW5SxMJgSMBCSL0aCKmnq1Sp7X/ZGQKcIyvVbfUFPt8U3XcWRN57bg== From: Kyle Meyer To: meta@public-inbox.org Subject: [PATCH 1/9] doc lei blob: avoid combined description of separate options Date: Sun, 16 May 2021 23:35:20 -0400 Message-Id: <20210517033528.18966-2-kyle@kyleam.com> In-Reply-To: <20210517033528.18966-1-kyle@kyleam.com> References: <20210517033528.18966-1-kyle@kyleam.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: kyle@kyleam.com List-Id: The next commit will update the manpages to split each option's variants into separate items. This change won't mix well with --oid-a, --path-a, and --path-b. These different options all share a single description, and, if each form is on its own line, the link between the variants of each option would no longer be clear. Use a dedicated description for each option to avoid confusion. --- Documentation/lei-blob.pod | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Documentation/lei-blob.pod b/Documentation/lei-blob.pod index bb316e71..341b5505 100644 --- a/Documentation/lei-blob.pod +++ b/Documentation/lei-blob.pod @@ -33,12 +33,15 @@ C<--oid-a>, C<--path-a>, and C<--path-b>. =item -A OID-A, --oid-a=OID-A +Provide pre-image object ID as a hint for reconstructing C. + =item -a PATH-A, --path-a=PATH-A +Provide pre-image pathname as a hint for reconstructing C. + =item -b PATH-B, --path-b=PATH-B -Provide pre-image object ID, pre-image pathname, or post-image -pathname as a hint for reconstructing C. +Provide post-image pathname as a hint for reconstructing C. =for comment TODO: The below options are shared with lei-q. Any good approaches to -- 2.31.1