From ce2bef7d2600c9b5249c5beef7c536299632993c Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sat, 27 Feb 2016 00:36:48 +0200 Subject: [PATCH] Change direct links to PlatformIO IDE binaries --- docs/ide/atom.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/ide/atom.rst b/docs/ide/atom.rst index f83d0f3b..6bbc85fb 100644 --- a/docs/ide/atom.rst +++ b/docs/ide/atom.rst @@ -53,10 +53,10 @@ Automatic Installation Please download PlatformIO IDE for Atom bundle with built-in auto installer (be patient and let the installation complete) -- `Download PlatformIO IDE for Windows `_ -- `Download PlatformIO IDE for Mac `_ -- `Download PlatformIO IDE .deb `_ -- `Download PlatformIO IDE .rpm `_ +- `Download PlatformIO IDE for Windows `_ +- `Download PlatformIO IDE for Mac `_ +- `Download PlatformIO IDE .deb `_ +- `Download PlatformIO IDE .rpm `_ Manual Installation ~~~~~~~~~~~~~~~~~~~ @@ -337,7 +337,7 @@ Convert Arduino file to C++ manually For example, we have the next ``Demo.ino`` file: -.. code-block:: c++ +.. code-block:: cpp void function setup () { someFunction(13); @@ -358,7 +358,7 @@ Let's convert it to ``Demo.cpp``: The final ``Demo.cpp``: -.. code-block:: c++ +.. code-block:: cpp #include