From 99b0a4184daf05cd37cee2d143a492bebd1087f9 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Fri, 11 Sep 2020 16:47:49 +0200 Subject: [PATCH] Apply suggestions from code review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Éric Gaspar <46165813+ericgaspar@users.noreply.github.com> --- data/helpers.d/setting | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/data/helpers.d/setting b/data/helpers.d/setting index 004171e05..9e7325d2d 100644 --- a/data/helpers.d/setting +++ b/data/helpers.d/setting @@ -383,7 +383,7 @@ ynh_permission_url() { then # Convert a list from getopts to python list # Note that getopts separate the args with ';' - # By example: + # For example: # --add_url /urlA /urlB # will be: # add_url=['/urlA', '/urlB'] @@ -394,7 +394,7 @@ ynh_permission_url() { then # Convert a list from getopts to python list # Note that getopts separate the args with ';' - # By example: + # For example: # --remove_url /urlA /urlB # will be: # remove_url=['/urlA', '/urlB'] @@ -454,7 +454,7 @@ ynh_permission_update() { then # Convert a list from getopts to python list # Note that getopts separate the args with ';' - # By example: + # For example: # --add alice bob # will be: # add=['alice', 'bob'] @@ -464,7 +464,7 @@ ynh_permission_update() { then # Convert a list from getopts to python list # Note that getopts separate the args with ';' - # By example: + # For example: # --remove alice bob # will be: # remove=['alice', 'bob']