summaryrefslogtreecommitdiff
path: root/docs/library/array.rst
diff options
context:
space:
mode:
authorScott Shawcroft <scott@tannewt.org>2018-07-30 12:33:44 -0700
committerGitHub <noreply@github.com>2018-07-30 12:33:44 -0700
commita6d94b68453b8535398ff0b61cd6c4a0c7f77f8b (patch)
tree8defd6392975b8145dc11f0cce9c39a4e440b32a /docs/library/array.rst
parent433a29bb70d51abb84c77a911ced43c6ff14706e (diff)
parentb1006170f1dcfa3a9499ef31c19c8f20736b136a (diff)
Merge pull request #1068 from dhalbert/micropython-25ae98f-merge
Micropython 25ae98f merge
Diffstat (limited to 'docs/library/array.rst')
-rw-r--r--docs/library/array.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/library/array.rst b/docs/library/array.rst
index 0f1310b68..d0121cb3e 100644
--- a/docs/library/array.rst
+++ b/docs/library/array.rst
@@ -21,9 +21,9 @@ Classes
.. 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.