Fix typo in docs.

This commit is contained in:
Bob Nystrom
2015-02-25 06:49:42 -08:00
parent 6e680f89bf
commit 516808f6d2

View File

@ -39,7 +39,7 @@ are shifted up to fill in where the removed element was.
Returns the removed item.
IO.print(["a", "b", "c"].removeAt(1) // "b".
IO.print(["a", "b", "c"].removeAt(1)) // "b".
It is a runtime error if the index is not an integer or is out of bounds.