Skip to content

Commit efd93d2

Browse files
committed
Fix help typos
1 parent ec722c1 commit efd93d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mbed/mbed.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1851,15 +1851,15 @@ def target_(name=None):
18511851

18521852
@subcommand('toolchain',
18531853
dict(name='name', nargs='?', help='Default toolchain name. Example: ARM, uARM, GCC_ARM, IAR'),
1854-
help='Sets default toolchain for the current program.')
1854+
help='Set default toolchain for the current program.')
18551855
def toolchain_(name=None):
18561856
return default_('toolchain', name)
18571857

18581858
# Generic config command
18591859
@subcommand('default',
18601860
dict(name='name', help='Variable name. E.g. "target", "toolchain", "protocol"'),
18611861
dict(name='value', nargs='?', help='Value. Will show the currently set default value for a variable if not specified.'),
1862-
help='Sets or get program default options.')
1862+
help='Set or get program default options.')
18631863
def default_(name, value=None):
18641864
# Find the root of the program
18651865
program = Program(os.getcwd())

0 commit comments

Comments
 (0)