From c09d828414788c063ed56ceb769d7cb638af994e Mon Sep 17 00:00:00 2001 From: Jake McGinty Date: Tue, 21 Sep 2021 12:50:21 +0900 Subject: [PATCH] shared: follow-up to bfa5d5e, double- to single-quote in opt rustdocs --- shared/src/types.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/shared/src/types.rs b/shared/src/types.rs index e8cdaa5..85b7503 100644 --- a/shared/src/types.rs +++ b/shared/src/types.rs @@ -322,7 +322,7 @@ pub struct AddPeerOpts { #[structopt(long)] pub save_config: Option, - /// Invite expiration period (eg. "30d", "7w", "2h", "60m", "1000s") + /// Invite expiration period (eg. '30d', '7w', '2h', '60m', '1000s') #[structopt(long)] pub invite_expires: Option, } @@ -344,11 +344,11 @@ pub struct RenamePeerOpts { #[derive(Debug, Clone, PartialEq, StructOpt)] pub struct AddCidrOpts { - /// The CIDR name (eg. "engineers") + /// The CIDR name (eg. 'engineers') #[structopt(long)] pub name: Option, - /// The CIDR network (eg. "10.42.5.0/24") + /// The CIDR network (eg. '10.42.5.0/24') #[structopt(long)] pub cidr: Option, @@ -363,7 +363,7 @@ pub struct AddCidrOpts { #[derive(Debug, Clone, PartialEq, StructOpt)] pub struct DeleteCidrOpts { - /// The CIDR name (eg. "engineers") + /// The CIDR name (eg. 'engineers') #[structopt(long)] pub name: Option,