diff --git a/HISTORY.rst b/HISTORY.rst index c8f53100..0bd16da2 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -232,7 +232,7 @@ PlatformIO 2.0 * Automatically detect upload port using VID:PID board settings (`issue #231 `_) * Improved detection of build changes -* Avoided ``LibInstallDependencyError`` when more then 1 library is found +* Avoided ``LibInstallDependencyError`` when more than 1 library is found (`issue #229 `_) 2.1.0 (2015-06-03) diff --git a/docs/projectconf.rst b/docs/projectconf.rst index 4258e340..448a0a2e 100644 --- a/docs/projectconf.rst +++ b/docs/projectconf.rst @@ -450,7 +450,7 @@ Example, specify own upload command for :ref:`platform_atmelavr`: ^^^^^^^^^^^ A list with targets which will be processed by :ref:`cmd_run` command by -default. You can enter more then one target separated with "space". Which +default. You can enter more than one target separated with "space". Which targets are supported is described in :option:`platformio run --target`. **Tip!** You can use these targets like an option to diff --git a/platformio/commands/lib.py b/platformio/commands/lib.py index 883f2c9f..7a988900 100644 --- a/platformio/commands/lib.py +++ b/platformio/commands/lib.py @@ -159,7 +159,7 @@ def lib_install_dependency(ctx, data): ctx.invoke(lib_install, libid=[result['items'][0]['id']]) else: click.secho( - "Conflict: More then one dependent libraries have been found " + "Conflict: More than one dependent libraries have been found " "by request %s:" % json.dumps(data), fg="red") echo_liblist_header()