From 480eea0c453e3a493021c6418bf2464775f492fc Mon Sep 17 00:00:00 2001 From: "Jim (JR)" Date: Mon, 25 Apr 2022 20:58:01 -0400 Subject: [PATCH] Change "freezed" to "frozen" The past tense of "freeze" is "frozen", not "freezed". This has been corrected in the two or three places where it occurred along with additional grammatical corrections where needed. --- docs/source/firmware.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/firmware.rst b/docs/source/firmware.rst index 3815ec4..a9c111f 100644 --- a/docs/source/firmware.rst +++ b/docs/source/firmware.rst @@ -50,7 +50,7 @@ Here's a table showing what kind of modules the **GiggleBot firmware** (which is +----------------------------+------------------------+-----------------------+ |precompiled ``.mpy`` modules| yes | no | +----------------------------+------------------------+-----------------------+ -|freezed gigglebot | | | +|frozen gigglebot | | | |modules | yes | no | | | | | +----------------------------+------------------------+-----------------------+ @@ -58,7 +58,7 @@ Here's a table showing what kind of modules the **GiggleBot firmware** (which is And here's what kind of modules can be used on the `BBC microbit`_ hardware: +-------------------------------+------------------------+-----------------------+--------------------+ -| Module | Load ``.py`` module | Load ``.mpy`` module | As freezed module | +| Module | Load ``.py`` module | Load ``.mpy`` module | As a frozen module | | | | | | +===============================+========================+=======================+====================+ |:py:mod:`gigglebot` | yes | yes | yes | @@ -74,7 +74,7 @@ And here's what kind of modules can be used on the `BBC microbit`_ hardware: .. note:: Be advised that loading ``.py`` modules directly to the microbit uses most of the RAM that's available to the board, - so not much is left to the user to code. That's why it's better to go with ``.mpy`` or freezed modules (*meaning our custom firmware*) and only go with + so not much is left to the user to code. That's why it's better to go with ``.mpy`` or frozen modules (*meaning our custom firmware*) and only go with the regular ``.py`` when burning the custom GiggleBot MicroPython firmware to the microbit is not possible. **********