Skip to content

Commit a9b9170

Browse files
authored
Merge pull request #12636 from fulldecent/patch-25
Fix signature of pop member
2 parents 7ab4ee1 + 6bd38aa commit a9b9170

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/types/reference-types.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,9 +337,9 @@ Array Members
337337
Dynamic storage arrays and ``bytes`` (not ``string``) have a member function
338338
called ``push(x)`` that you can use to append a given element at the end of the array.
339339
The function returns nothing.
340-
**pop**:
340+
**pop()**:
341341
Dynamic storage arrays and ``bytes`` (not ``string``) have a member
342-
function called ``pop`` that you can use to remove an element from the
342+
function called ``pop()`` that you can use to remove an element from the
343343
end of the array. This also implicitly calls :ref:`delete<delete>` on the removed element.
344344

345345
.. note::

0 commit comments

Comments
 (0)