Skip to content

Commit 0c00f45

Browse files
committed
removed unclear line references and instead replaced with the code in c tags
1 parent d9ceaa8 commit 0c00f45

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 7. 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)