Drop period from first line of about texts.
This commit is contained in:
parent
8ffbb07ebe
commit
b68d22dfc8
@ -88,8 +88,10 @@ pub enum Subcommands {
|
||||
name = "add",
|
||||
about = "Link a certificate and a User ID",
|
||||
long_about =
|
||||
"Link a certificate and a User ID. This cause `sq` to considers
|
||||
the certificate and User ID binding to be authentic.
|
||||
"Link a certificate and a User ID
|
||||
|
||||
This cause `sq` to considers the certificate and User ID binding to be
|
||||
authentic.
|
||||
|
||||
A certificate can also be accepted as a certification authority, which
|
||||
is also known as a trusted introducer, by using the `--ca` or
|
||||
@ -322,7 +324,7 @@ pub struct AddCommand {
|
||||
name = "retract",
|
||||
about = "Retracts links",
|
||||
long_about =
|
||||
"Retracts links.
|
||||
"Retracts links
|
||||
|
||||
This command retracts links that were previously created using `sq
|
||||
link add`. See that subcommand's documentation for more details.
|
||||
@ -397,7 +399,7 @@ pub struct RetractCommand {
|
||||
name = "list",
|
||||
about = "Lists links",
|
||||
long_about =
|
||||
"Lists links.
|
||||
"Lists links
|
||||
|
||||
This command lists all bindings that are linked or whose link has been
|
||||
retracted.
|
||||
|
@ -25,6 +25,8 @@
|
||||
///
|
||||
/// ## Typography
|
||||
///
|
||||
/// - The first line of the about texts MUST NOT end in a period.
|
||||
///
|
||||
/// - To define terms, enclose them in double quotes: "certificate".
|
||||
///
|
||||
/// - To include inline code fragments, like options or other
|
||||
|
@ -11,7 +11,7 @@ use crate::cli::types::FileOrStdout;
|
||||
#[clap(
|
||||
name = "dane",
|
||||
about = "Interacts with DANE",
|
||||
long_about = "DNS-Based Authentication of Named Entities (DANE) is a method for publishing public keys in DNS as specified in RFC 7929.",
|
||||
long_about = "DNS-Based Authentication of Named Entities (DANE) is a method for publishing public keys in DNS as specified in RFC 7929",
|
||||
subcommand_required = true,
|
||||
arg_required_else_help = true,
|
||||
)]
|
||||
@ -28,7 +28,7 @@ pub enum Subcommands {
|
||||
|
||||
#[derive(Debug, Args)]
|
||||
#[clap(
|
||||
about = "Generates DANE records for the given domain and keys.",
|
||||
about = "Generates DANE records for the given domain and keys",
|
||||
long_about =
|
||||
"Generates DANE records for the given domain and keys
|
||||
|
||||
|
@ -29,7 +29,7 @@ pub enum Subcommands {
|
||||
|
||||
#[derive(Debug, Args)]
|
||||
#[clap(
|
||||
about = "Prints the advanced Web Key Directory URL of an email address.",
|
||||
about = "Prints the advanced Web Key Directory URL of an email address",
|
||||
)]
|
||||
pub struct UrlCommand {
|
||||
#[clap(
|
||||
@ -41,7 +41,7 @@ pub struct UrlCommand {
|
||||
|
||||
#[derive(Debug, Args)]
|
||||
#[clap(
|
||||
about = "Prints the direct Web Key Directory URL of an email address.",
|
||||
about = "Prints the direct Web Key Directory URL of an email address",
|
||||
)]
|
||||
pub struct DirectUrlCommand {
|
||||
#[clap(
|
||||
@ -94,7 +94,7 @@ pub struct FetchCommand {
|
||||
|
||||
#[derive(Debug, Args)]
|
||||
#[clap(
|
||||
about = "Generates a Web Key Directory for the given domain and keys.",
|
||||
about = "Generates a Web Key Directory for the given domain and keys",
|
||||
long_about =
|
||||
"Generates a Web Key Directory for the given domain and keys
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user