summaryrefslogtreecommitdiff
path: root/docs/library
diff options
context:
space:
mode:
authorDan Halbert <halbert@halwitz.org>2018-07-23 21:34:25 -0400
committerDan Halbert <halbert@halwitz.org>2018-07-23 21:34:25 -0400
commitbc760dd34100099c352a0f185ec54ceae23d036d (patch)
treecdbf3137eab7adec885ddb812daeda9b7069d679 /docs/library
parent2809b4f9dd08dd1e83e87f1f4088ba22f3f66cd2 (diff)
WIP: complete manual inspection of all significant changes
Diffstat (limited to 'docs/library')
-rw-r--r--docs/library/array.rst6
-rw-r--r--docs/library/ujson.rst8
-rw-r--r--docs/library/ure.rst1
3 files changed, 7 insertions, 8 deletions
diff --git a/docs/library/array.rst b/docs/library/array.rst
index 859b370ea..d0121cb3e 100644
--- a/docs/library/array.rst
+++ b/docs/library/array.rst
@@ -16,14 +16,14 @@ Classes
.. class:: array.array(typecode, [iterable])
Create array with elements of given type. Initial contents of the
- array are given by *iterable*. If it is not provided, an empty
+ array are given by an `iterable`. If it is not provided, an empty
array is created.
.. method:: append(val)
- Append new element *val* to the end of array, growing it.
+ Append new element ``val`` to the end of array, growing it.
.. method:: extend(iterable)
- Append new elements as contained in *iterable* to the end of
+ Append new elements as contained in `iterable` to the end of
array, growing it.
diff --git a/docs/library/ujson.rst b/docs/library/ujson.rst
index ef9c70c25..4ed91f053 100644
--- a/docs/library/ujson.rst
+++ b/docs/library/ujson.rst
@@ -16,20 +16,20 @@ Functions
.. function:: dump(obj, stream)
- Serialise *obj* to a JSON string, writing it to the given *stream*.
+ Serialise ``obj`` to a JSON string, writing it to the given *stream*.
.. function:: dumps(obj)
- Return *obj* represented as a JSON string.
+ Return ``obj`` represented as a JSON string.
.. function:: load(stream)
- Parse the given *stream*, interpreting it as a JSON string and
+ Parse the given ``stream``, interpreting it as a JSON string and
deserialising the data to a Python object. The resulting object is
returned.
Parsing continues until end-of-file is encountered.
- A :exc:`ValueError` is raised if the data in *stream* is not correctly formed.
+ A :exc:`ValueError` is raised if the data in ``stream`` is not correctly formed.
.. function:: loads(str)
diff --git a/docs/library/ure.rst b/docs/library/ure.rst
index 2447de121..4af182b01 100644
--- a/docs/library/ure.rst
+++ b/docs/library/ure.rst
@@ -69,7 +69,6 @@ Functions
.. data:: DEBUG
Flag value, display debug information about compiled expression.
- (Availability depends on `MicroPython port`.)
.. _regex: