diff options
Diffstat (limited to 'docs/library/index.rst')
-rw-r--r-- | docs/library/index.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/library/index.rst b/docs/library/index.rst index 638941fa5e..9af4fec056 100644 --- a/docs/library/index.rst +++ b/docs/library/index.rst @@ -56,7 +56,7 @@ The following standard Python libraries have been "micro-ified" to fit in with 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. Some modules below use a standard Python name, but prefixed with "u", -e.g. ``ujson`` instead of ``json``. This is to signify that such a module is +e.g. ``json`` instead of ``json``. This is to signify that such a module is micro-library, i.e. implements only a subset of CPython module functionality. By naming them differently, a user has a choice to write a Python-level module to extend functionality for better compatibility with CPython (indeed, this is @@ -68,7 +68,7 @@ are available both by their u-name, and also by their non-u-name. The non-u-name can be overridden by a file of that name in your library path (``sys.path``). For example, ``import json`` will first search for a file ``json.py`` (or package directory ``json``) and load that module if it is found. If nothing is found, -it will fallback to loading the built-in ``ujson`` module. +it will fallback to loading the built-in ``json`` module. .. toctree:: :maxdepth: 1 |