diff options
Diffstat (limited to 'source/arduino/static.rst')
-rw-r--r-- | source/arduino/static.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/arduino/static.rst b/source/arduino/static.rst index 76bf949..01f3dbf 100644 --- a/source/arduino/static.rst +++ b/source/arduino/static.rst @@ -15,8 +15,8 @@ Variables declared as ``static`` will only be created and initialized the first time a function is called. .. note:: This is only one use of the ``static`` keyword in C++. It - has some other important uses that are outside the scope of this - documentation; consult a reliable C++ reference for details. + has some other important uses that are not documented here; consult + a reliable C++ reference for details. Example ------- @@ -54,4 +54,4 @@ it was declared ``static``. Thus, ``numSensorReadings`` is a count of the number of times that ``readSensors()`` has been called. -.. include:: cc-attribution.txt
\ No newline at end of file +.. include:: cc-attribution.txt |