Fix typo: 'pop to end' in Arrays:Stacks

This commit is contained in:
Johann Miller 2017-10-06 16:01:26 -04:00 committed by GitHub
parent cceb7cbcc8
commit 34c0a5a704

View file

@ -113,7 +113,7 @@ There's another use case for arrays -- the data structure named [stack](https://
It supports two operations:
- `push` adds an element to the end.
- `pop` takes an element to the end.
- `pop` takes an element from the end.
So new elements are added or taken always from the "end".