diff options
Diffstat (limited to 'docs/library/array.rst')
-rw-r--r-- | docs/library/array.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/library/array.rst b/docs/library/array.rst index f94cece2b..f417a7046 100644 --- a/docs/library/array.rst +++ b/docs/library/array.rst @@ -75,7 +75,7 @@ Classes Returns the string representation of the array, called as ``str(a)`` or ``repr(a)``` (where ``a`` is an ``array``). Returns the string ``"array(<type>, [<elements>])"``, where ``<type>`` is the type code letter for the array and ``<elements>`` is a comma - seperated list of the elements of the array. + separated list of the elements of the array. **Note:** ``__repr__`` cannot be called directly (``a.__repr__()`` fails) and is not present in ``__dict__``, however ``str(a)`` and ``repr(a)`` both work. |