Skip to content

Commit dbdef21

Browse files
committed
fix(book): workaround for c++ issue in asciidoc
See:asciidoctor/asciidoctor#1208
1 parent 6ab8bc4 commit dbdef21

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

book/content/part02/array.asc

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ 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++.
21-
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.
20+
Some programming languages have fixed size arrays like Java and {cpp}.
21+
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 {cpp} and `ArrayList` in Java. Dynamic programming languages like JavaScript, Ruby, and Python use dynamic arrays by default.
2222
****
2323

2424
Arrays look like this:

0 commit comments

Comments
 (0)
close