From 952caffb15ece040120b196ef374a9fec08964fc Mon Sep 17 00:00:00 2001 From: Manuel BEAUDRU Date: Fri, 19 Apr 2019 13:49:33 +0200 Subject: [PATCH 1/2] docs: adds a missing word in a sentence --- book/chapters/array.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/chapters/array.adoc b/book/chapters/array.adoc index a2eda03e..04b8a20f 100644 --- a/book/chapters/array.adoc +++ b/book/chapters/array.adoc @@ -28,7 +28,7 @@ Arrays are a sequential collection of elements that can be accessed randomly usi == Insertion -Arrays are built-in into most languages. Inserting element in an array is you can either: +Arrays are built-in into most languages. Inserting element in an array is simple, you can either: .Inserting elements into an array [source, javascript] From 8a727fa894e81e29fbfe8679da18734294e7fb83 Mon Sep 17 00:00:00 2001 From: Adrian Mejia Date: Fri, 19 Apr 2019 09:07:50 -0400 Subject: [PATCH 2/2] docs(array): improve wording --- book/chapters/array.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/chapters/array.adoc b/book/chapters/array.adoc index 04b8a20f..7fb1dcaf 100644 --- a/book/chapters/array.adoc +++ b/book/chapters/array.adoc @@ -28,7 +28,7 @@ Arrays are a sequential collection of elements that can be accessed randomly usi == Insertion -Arrays are built-in into most languages. Inserting element in an array is simple, you can either: +Arrays are built-in into most languages. Inserting an element is simple; you can either add them on creation time or after initialization. Below you can find an example for both cases: .Inserting elements into an array [source, javascript]