Skip to content

Commit f5b06fd

Browse files
committed
docs(array): grammar
1 parent 5dc7091 commit f5b06fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

book/content/part02/array.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ TIP: Strings are a collection of Unicode characters and most of the array concep
1717

1818
.Fixed vs. Dynamic Size Arrays
1919
****
20-
Some programming languages have fixed size arrays like Java and C++. Fixed size arrays might be a hassle when your collection gets full, and you have to create a new one with a bigger size. For that, those programming languages also have built-in dynamic arrays: we have `vector` in C++ and `ArrayList` in Java. Dynamic programming languages like JavaScript, Ruby, Python use dynamic arrays by default.
20+
Some programming languages have fixed size arrays like Java and C++. Fixed size arrays might be a hassle when your collection gets full, and you have to create a new one with a bigger size. For that, those programming languages also have built-in dynamic arrays: we have `vector` in C++ and `ArrayList` in Java. Dynamic programming languages, like JavaScript, Ruby, and Python, use dynamic arrays by default.
2121
****
2222

2323
Arrays look like this:

0 commit comments

Comments
 (0)