summaryrefslogtreecommitdiff
path: root/docs/library/array.rst
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/array.rst
parent2809b4f9dd08dd1e83e87f1f4088ba22f3f66cd2 (diff)
WIP: complete manual inspection of all significant changes
Diffstat (limited to 'docs/library/array.rst')
-rw-r--r--docs/library/array.rst6
1 files changed, 3 insertions, 3 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.