Skip to content

Commit eee1377

Browse files
committed
Delete extra word
1 parent 3ac5b6e commit eee1377

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/arrays_ii/initialization_with_size.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ boolean[] pixels = new boolean[23040];
1414
So you have to say `new` followed by the type of element in the array, `[`, the size of the array and `]`.
1515

1616

17-
[^bw]: The original GameBoy wasn't actually just black and white. It supported 7 shades of gray, so a `boolean` wouldn't technically to be enough to represent a pixel's state. You'd have to use something with at least 8 states, not just 2.
17+
[^bw]: The original GameBoy wasn't actually just black and white. It supported 7 shades of gray, so a `boolean` wouldn't technically be enough to represent a pixel's state. You'd have to use something with at least 8 states, not just 2.

0 commit comments

Comments
 (0)