From 27822f42e974540c00be88aa5694a8ca097ee6df Mon Sep 17 00:00:00 2001 From: lachiemurray Date: Tue, 20 Mar 2018 15:24:52 +0000 Subject: [PATCH] Fix typo in command_builder 'expecity' -> 'explicitly' (#447) --- aztk/utils/command_builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aztk/utils/command_builder.py b/aztk/utils/command_builder.py index 47c22f32..bd0d3b8f 100644 --- a/aztk/utils/command_builder.py +++ b/aztk/utils/command_builder.py @@ -22,7 +22,7 @@ def add_option(self, name: str, value: str = None, enable: bool=None): :param name: Option name (with the dash(es)) :param value: Value for the option(If null and enable is not provided it won't add the option) - :param enable: To expecity add or ignore the option + :param enable: To explicitly add or ignore the option Usage: >>> command.add_option("--id", myId) # => Will only add to the command if myId is not null