diff options
author | Jason Neal <jason.neal@astro.up.pt> | 2020-01-02 00:51:42 +1300 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2020-01-06 22:17:29 +1100 |
commit | aec88ddf0326187c567d4e4507149fb7c54ba91d (patch) | |
tree | 03a2a1d36fb893b213a327df53f88a941dfb88f1 /docs/reference/speed_python.rst | |
parent | de78a9e317d3dd3654424ea70446dedbae9cce52 (diff) |
docs: More consistent capitalization and use of articles in headings.
See issue #3188.
Diffstat (limited to 'docs/reference/speed_python.rst')
-rw-r--r-- | docs/reference/speed_python.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/reference/speed_python.rst b/docs/reference/speed_python.rst index a6951ed33..aa9777859 100644 --- a/docs/reference/speed_python.rst +++ b/docs/reference/speed_python.rst @@ -1,6 +1,6 @@ .. _speed_python: -Maximising MicroPython Speed +Maximising MicroPython speed ============================ .. contents:: @@ -40,7 +40,7 @@ the best algorithm is employed. This is a topic for textbooks rather than for a MicroPython guide but spectacular performance gains can sometimes be achieved by adopting algorithms known for their efficiency. -RAM Allocation +RAM allocation ~~~~~~~~~~~~~~ To design efficient MicroPython code it is necessary to have an understanding of the @@ -69,7 +69,7 @@ example, objects which support stream interface (e.g., file or UART) provide ``r method which allocates new buffer for read data, but also a ``readinto()`` method to read data into an existing buffer. -Floating Point +Floating point ~~~~~~~~~~~~~~ Some MicroPython ports allocate floating point numbers on heap. Some other ports |