From 3426c01955dbb96b28b42f54c4e2414d7d5bc27f Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Sun, 21 Aug 2016 13:35:31 +0300 Subject: [PATCH] Fix invalid example with converting INO to CPP in the Atom docs // Resolve #757 --- docs/ide/atom.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/ide/atom.rst b/docs/ide/atom.rst index 0d484c91..9254e9e1 100644 --- a/docs/ide/atom.rst +++ b/docs/ide/atom.rst @@ -381,11 +381,11 @@ For example, we have the next ``Demo.ino`` file: .. code-block:: cpp - void function setup () { + void setup () { someFunction(13); } - void function loop() { + void loop() { delay(1000); } @@ -406,11 +406,11 @@ The final ``Demo.cpp``: void someFunction(int num); - void function setup () { + void setup () { someFunction(13); } - void function loop() { + void loop() { delay(1000); }