diff options
| author | Damien George <damien.p.george@gmail.com> | 2018-03-15 15:50:51 +1100 |
|---|---|---|
| committer | Damien George <damien.p.george@gmail.com> | 2018-03-15 15:50:51 +1100 |
| commit | 0db49c37a4e8d2516ea0206f4e800b907cd4221f (patch) | |
| tree | 9e0d9677ad47953eb577979dfd3060f79ad0c50f /docs/library/array.rst | |
| parent | c926e72750ddc410f2ae4f1b28d17dfb09b5ca2c (diff) | |
docs: Fix some references and RST markup to eliminate Sphinx warnings.
Diffstat (limited to 'docs/library/array.rst')
| -rw-r--r-- | docs/library/array.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/library/array.rst b/docs/library/array.rst index d096c6ec4..f837b0343 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. |
