diff options
author | Damien George <damien.p.george@gmail.com> | 2015-06-04 23:53:26 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-06-04 23:53:26 +0100 |
commit | 3eece29807f5257091271229dbf41543646eb4e4 (patch) | |
tree | ee9590731400cd2e777dc70d82cc75e14b235fe4 /docs/library | |
parent | 601cfea6a3901e0faeaf7aa4a25df6fd6594208f (diff) | |
download | micropython-3eece29807f5257091271229dbf41543646eb4e4.tar.gz micropython-3eece29807f5257091271229dbf41543646eb4e4.zip |
docs: Change "Micro Python" to "MicroPython" in all places in docs.
Diffstat (limited to 'docs/library')
-rw-r--r-- | docs/library/index.rst | 10 | ||||
-rw-r--r-- | docs/library/micropython.rst | 6 | ||||
-rw-r--r-- | docs/library/pyb.UART.rst | 2 | ||||
-rw-r--r-- | docs/library/sys.rst | 2 |
4 files changed, 10 insertions, 10 deletions
diff --git a/docs/library/index.rst b/docs/library/index.rst index 9b77271814..245a345f36 100644 --- a/docs/library/index.rst +++ b/docs/library/index.rst @@ -1,7 +1,7 @@ -Micro Python libraries -====================== +MicroPython libraries +===================== -Functionality specific to the Micro Python implementation is available in +Functionality specific to the MicroPython implementation is available in the following library. .. toctree:: @@ -12,7 +12,7 @@ the following library. Python standard libraries ------------------------- -The following standard Python libraries are built in to Micro Python. +The following standard Python libraries are built in to MicroPython. For additional libraries, please download them from the `micropython-lib repository <https://github.com/micropython/micropython-lib>`_. @@ -33,7 +33,7 @@ Python micro-libraries ---------------------- The following standard Python libraries have been "micro-ified" to fit in with -the philosophy of Micro Python. They provide the core functionality of that +the philosophy of MicroPython. They provide the core functionality of that module and are intended to be a drop-in replacement for the standard Python library. diff --git a/docs/library/micropython.rst b/docs/library/micropython.rst index 7564f29ae2..83ccb2900f 100644 --- a/docs/library/micropython.rst +++ b/docs/library/micropython.rst @@ -1,8 +1,8 @@ -:mod:`micropython` -- access and control Micro Python internals -=============================================================== +:mod:`micropython` -- access and control MicroPython internals +============================================================== .. module:: micropython - :synopsis: access and control Micro Python internals + :synopsis: access and control MicroPython internals Functions --------- diff --git a/docs/library/pyb.UART.rst b/docs/library/pyb.UART.rst index 5e0f15df07..75d1fbe9b4 100644 --- a/docs/library/pyb.UART.rst +++ b/docs/library/pyb.UART.rst @@ -38,7 +38,7 @@ To check if there is anything to be read, use:: uart.any() # returns True if any characters waiting -*Note:* The stream functions ``read``, ``write``, etc. are new in Micro Python v1.3.4. +*Note:* The stream functions ``read``, ``write``, etc. are new in MicroPython v1.3.4. Earlier versions use ``uart.send`` and ``uart.recv``. Constructors diff --git a/docs/library/sys.rst b/docs/library/sys.rst index 5f5f18b463..b3e52c40c4 100644 --- a/docs/library/sys.rst +++ b/docs/library/sys.rst @@ -39,7 +39,7 @@ Constants .. data:: platform - The platform that Micro Python is running on. This is "pyboard" on the + The platform that MicroPython is running on. This is "pyboard" on the pyboard and provides a robust way of determining if a script is running on the pyboard or not. |