Pg: 198
Status: Fixed
Fixed in Build: 1.21
Reported On: 2020-04-15
Reported By: ruidanielribeiro
|
Location: 9.3.1 step 2
Old Text: Next, you can set iaaa[0][0] to point to an array of 4 ints
using iaaa[0][0] = new int[]{ 1, 2, 3, 4}; or iaaa[0][0] = { 1, 2, 3, 4};
New Text: Next, you can set iaaa[0][0] to point to an array of 4 ints
using iaaa[0][0] = new int[]{ 1, 2, 3, 4};
Comments: The "or iaaa[0][0] = { 1, 2, 3, 4}; " should be removed because it works only at the time of declaration.
|