Fix typo: 'pop to end' in Arrays:Stacks
This commit is contained in:
parent
cceb7cbcc8
commit
34c0a5a704
1 changed files with 1 additions and 1 deletions
|
@ -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".
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue