From 34c0a5a7045fa28bfcb4f06327b5a18b6272501c Mon Sep 17 00:00:00 2001 From: Johann Miller Date: Fri, 6 Oct 2017 16:01:26 -0400 Subject: [PATCH] Fix typo: 'pop to end' in Arrays:Stacks --- 1-js/05-data-types/04-array/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/05-data-types/04-array/article.md b/1-js/05-data-types/04-array/article.md index 781699f7..8246c9dd 100644 --- a/1-js/05-data-types/04-array/article.md +++ b/1-js/05-data-types/04-array/article.md @@ -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".