Merge pull request #236 from johannkm/patch-1

Fix typo: 'pop to end' in Arrays:Stacks
This commit is contained in:
Ilya Kantor 2017-10-07 17:04:39 +03:00 committed by GitHub
commit 4ab4223cab

View file

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