summaryrefslogtreecommitdiff
path: root/docs/library/array.rst
diff options
context:
space:
mode:
authorDan Halbert <halbert@halwitz.org>2018-07-11 16:45:30 -0400
committerDan Halbert <halbert@halwitz.org>2018-07-11 16:45:30 -0400
commit7c219600a246d8956d0b23ea3f5d125a820e6b6a (patch)
tree4cf793a66284322d48a8f430815c31cd1c9ffa1d /docs/library/array.rst
parent4962468ffffac9ec4e36b2b1fc3f132516df3127 (diff)
parent25ae98f07cb3c4488cb955403dfe56b8bb8db6f0 (diff)
WIP: after merge; before testing
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 0f1310b68..859b370ea 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 an `iterable`. If it is not provided, an empty
+ array are given by *iterable*. If it is not provided, an empty
array is created.
.. method:: append(val)
- Append new element 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 an iterable to the end of
+ Append new elements as contained in *iterable* to the end of
array, growing it.