From 46c88b4df734f61835286360ce1ca8d464ff1ad2 Mon Sep 17 00:00:00 2001 From: Ronak Harkhani Date: Sun, 3 Feb 2019 20:26:05 +0530 Subject: [PATCH] "In practice we meet it very often." is wrong. Changed to "In practice we need it very often." or "In practice we use it very often" would also work. --- 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 48138b63..2fad1601 100644 --- a/1-js/05-data-types/04-array/article.md +++ b/1-js/05-data-types/04-array/article.md @@ -104,7 +104,7 @@ A [queue](https://en.wikipedia.org/wiki/Queue_(abstract_data_type)) is one of mo Arrays support both operations. -In practice we meet it very often. For example, a queue of messages that need to be shown on-screen. +In practice we need it very often. For example, a queue of messages that need to be shown on-screen. There's another use case for arrays -- the data structure named [stack](https://en.wikipedia.org/wiki/Stack_(abstract_data_type)).