From ef3c2c73d5114ab507a90cdc85b0282720b6b7f3 Mon Sep 17 00:00:00 2001 From: Samuel Tardieu Date: Fri, 25 Mar 2022 11:00:47 +0100 Subject: [PATCH] docs: arg! macro uses double quotes for help string --- src/macros.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/macros.rs b/src/macros.rs index f9782d50c08..a9b99537680 100644 --- a/src/macros.rs +++ b/src/macros.rs @@ -633,7 +633,7 @@ macro_rules! arg_impl { /// /// ### Help String /// -/// The help string is denoted between a pair of single quotes `''` and may contain any +/// The help string is denoted between a pair of double quotes `""` and may contain any /// characters. /// /// # Examples