From 01d415cc7f89dea8b10190e90d729364cff3bdb7 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 15 Oct 2014 22:33:23 +0300 Subject: [PATCH] Avoid trademarks issues --- README.rst | 3 ++- docs/index.rst | 4 ++-- platformio/__init__.py | 4 ++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index ef5a335b..2fad2c4c 100644 --- a/README.rst +++ b/README.rst @@ -24,7 +24,8 @@ PlatformIO `Blog `_ | `Twitter `_ -**PlatformIO** is a cross-platform code builder and library manager (Arduino, MSP430, ARM). +**PlatformIO** is a cross-platform code builder and library manager for +*Arduino, MSP430, ARM*. * `Website + Library Search `_ * `Quickstart `_ diff --git a/docs/index.rst b/docs/index.rst index 05b996a0..a7b2254e 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -1,5 +1,5 @@ -PlatformIO: A cross-platform code builder and library manager (Arduino, MSP430, ARM) -==================================================================================== +PlatformIO: A cross-platform code builder and library manager for Arduino, MSP430, ARM +====================================================================================== `Website + Library Search `_ | `Project Examples `_ | diff --git a/platformio/__init__.py b/platformio/__init__.py index 09b6f1dc..d53c2bb6 100644 --- a/platformio/__init__.py +++ b/platformio/__init__.py @@ -5,8 +5,8 @@ VERSION = (0, 8, "0-dev") __version__ = ".".join([str(s) for s in VERSION]) __title__ = "platformio" -__description__ = ("A cross-platform code builder and library manager " - "(Arduino, MSP430, ARM)") +__description__ = ("A cross-platform code builder and library manager for " + "Arduino, MSP430, ARM") __url__ = "http://platformio.ikravets.com" __author__ = "Ivan Kravets"