Skip to content

Commit 3eece29

Browse files
committed
docs: Change "Micro Python" to "MicroPython" in all places in docs.
1 parent 601cfea commit 3eece29

File tree

17 files changed

+47
-47
lines changed

17 files changed

+47
-47
lines changed

docs/conf.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33
#
4-
# Micro Python documentation build configuration file, created by
4+
# MicroPython documentation build configuration file, created by
55
# sphinx-quickstart on Sun Sep 21 11:42:03 2014.
66
#
77
# This file is execfile()d with the current directory set to its
@@ -50,7 +50,7 @@
5050
master_doc = 'index'
5151

5252
# General information about the project.
53-
project = 'Micro Python'
53+
project = 'MicroPython'
5454
copyright = '2014, Damien P. George'
5555

5656
# The version info for the project you're documenting, acts as replacement for
@@ -213,7 +213,7 @@
213213
# (source start file, target name, title,
214214
# author, documentclass [howto, manual, or own class]).
215215
latex_documents = [
216-
('index', 'MicroPython.tex', 'Micro Python Documentation',
216+
('index', 'MicroPython.tex', 'MicroPython Documentation',
217217
'Damien P. George', 'manual'),
218218
]
219219

@@ -243,7 +243,7 @@
243243
# One entry per manual page. List of tuples
244244
# (source start file, name, description, authors, manual section).
245245
man_pages = [
246-
('index', 'micropython', 'Micro Python Documentation',
246+
('index', 'micropython', 'MicroPython Documentation',
247247
['Damien P. George'], 1),
248248
]
249249

@@ -257,7 +257,7 @@
257257
# (source start file, target name, title, author,
258258
# dir menu entry, description, category)
259259
texinfo_documents = [
260-
('index', 'MicroPython', 'Micro Python Documentation',
260+
('index', 'MicroPython', 'MicroPython Documentation',
261261
'Damien P. George', 'MicroPython', 'One line description of project.',
262262
'Miscellaneous'),
263263
]

docs/contents.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Micro Python documentation contents
2-
===================================
1+
MicroPython documentation contents
2+
==================================
33

44
.. only:: port_pyboard
55

docs/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Micro Python documentation and references
2-
=========================================
1+
MicroPython documentation and references
2+
========================================
33

44
.. only:: port_pyboard
55

docs/library/index.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
Micro Python libraries
2-
======================
1+
MicroPython libraries
2+
=====================
33

4-
Functionality specific to the Micro Python implementation is available in
4+
Functionality specific to the MicroPython implementation is available in
55
the following library.
66

77
.. toctree::
@@ -12,7 +12,7 @@ the following library.
1212
Python standard libraries
1313
-------------------------
1414

15-
The following standard Python libraries are built in to Micro Python.
15+
The following standard Python libraries are built in to MicroPython.
1616

1717
For additional libraries, please download them from the `micropython-lib repository
1818
<https://github.com/micropython/micropython-lib>`_.
@@ -33,7 +33,7 @@ Python micro-libraries
3333
----------------------
3434

3535
The following standard Python libraries have been "micro-ified" to fit in with
36-
the philosophy of Micro Python. They provide the core functionality of that
36+
the philosophy of MicroPython. They provide the core functionality of that
3737
module and are intended to be a drop-in replacement for the standard Python
3838
library.
3939

docs/library/micropython.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
:mod:`micropython` -- access and control Micro Python internals
2-
===============================================================
1+
:mod:`micropython` -- access and control MicroPython internals
2+
==============================================================
33

44
.. module:: micropython
5-
:synopsis: access and control Micro Python internals
5+
:synopsis: access and control MicroPython internals
66

77
Functions
88
---------

docs/library/pyb.UART.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ To check if there is anything to be read, use::
3838

3939
uart.any() # returns True if any characters waiting
4040

41-
*Note:* The stream functions ``read``, ``write``, etc. are new in Micro Python v1.3.4.
41+
*Note:* The stream functions ``read``, ``write``, etc. are new in MicroPython v1.3.4.
4242
Earlier versions use ``uart.send`` and ``uart.recv``.
4343

4444
Constructors

docs/library/sys.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Constants
3939

4040
.. data:: platform
4141

42-
The platform that Micro Python is running on. This is "pyboard" on the
42+
The platform that MicroPython is running on. This is "pyboard" on the
4343
pyboard and provides a robust way of determining if a script is running
4444
on the pyboard or not.
4545

docs/license.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Micro Python license information
2-
================================
1+
MicroPython license information
2+
===============================
33

44
The MIT License (MIT)
55

docs/pyboard/tutorial/assembler.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Inline assembler
22
================
33

4-
Here you will learn how to write inline assembler in Micro Python.
4+
Here you will learn how to write inline assembler in MicroPython.
55

66
**Note**: this is an advanced tutorial, intended for those who already
77
know a bit about microcontrollers and assembly language.
88

9-
Micro Python includes an inline assembler. It allows you to write
9+
MicroPython includes an inline assembler. It allows you to write
1010
assembly routines as a Python function, and you can call them as you would
1111
a normal Python function.
1212

@@ -23,7 +23,7 @@ Let's start with the simplest example::
2323
You can enter this in a script or at the REPL. This function takes no
2424
arguments and returns the number 42. ``r0`` is a register, and the value
2525
in this register when the function returns is the value that is returned.
26-
Micro Python always interprets the ``r0`` as an integer, and converts it to an
26+
MicroPython always interprets the ``r0`` as an integer, and converts it to an
2727
integer object for the caller.
2828

2929
If you run ``print(fun())`` you will see it print out 42.

docs/pyboard/tutorial/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _tutorial-index:
22

3-
Micro Python tutorial
4-
=====================
3+
MicroPython tutorial
4+
====================
55

66
This tutorial is intended to get you started with your pyboard.
77
All you need is a pyboard and a micro-USB cable to connect it to

0 commit comments

Comments
 (0)