Fix invalid example with converting INO to CPP in the Atom docs // Resolve #757

This commit is contained in:
Ivan Kravets
2016-08-21 13:35:31 +03:00
parent 1a517995a0
commit 3426c01955

View File

@ -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);
}