Skip to content

Commit bbac2e0

Browse files
authored
Merge pull request #179 from GalinaP7/issue135_unclearRef
Issue135 unclear ref
2 parents 1cef2c4 + 0c00f45 commit bbac2e0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

source/ch3_javadatatypes.ptx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -692,8 +692,8 @@ public class HistoArray {
692692
</program>
693693

694694
<p>
695-
The main difference between this example and the previous example is that we declare <c>count</c> to be an <c>Array</c> of integers. We also can initialize short arrays directly using the syntax shown on line 8. Then notice that on line 22 we can use the square bracket notation to index into an array.
696-
</p>
695+
The main difference between this example and the previous example is that we declare <c>count</c> to be an <c>Array</c> of integers. We also can initialize short arrays directly using the syntax shown here: <c>Integer[] count = {0,0,0,0,0,0,0,0,0,0}</c>Then notice that we can use the square bracket notation <c>count[idx]</c> to index into an array.
696+
</p>
697697
</section>
698698

699699
<section xml:id="dictionary">

0 commit comments

Comments
 (0)