Skip to content

Commit 780c49b

Browse files
committed
Merge branch 'master' of https://github.com/bhoffman0/CSAwesome
2 parents b565386 + 1e33ca6 commit 780c49b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

_sources/Unit6-Arrays/topic-6-1-array-basics.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -847,7 +847,7 @@ community. In this unit, you will create an array to hold objects of your class
847847
@Test
848848
public void testprint()
849849
{
850-
boolean passed = checkCodeContains("call to print() of array element 0", "[0].print");
850+
boolean passed = checkCodeContains("call to .print of array element 0", "[0].print");
851851
assertTrue(passed);
852852
}
853853

_sources/Unit6-Arrays/topic-6-2-traversing-arrays.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1305,7 +1305,7 @@ traverse your array to print out each object.
13051305
public void testprint()
13061306
{
13071307
boolean passed =
1308-
checkCodeContains("call to print() using index [i] in the loop", "[i].print();");
1308+
checkCodeContains("call to .print using index [i] in the loop", "[i].print");
13091309
assertTrue(passed);
13101310
}
13111311

0 commit comments

Comments
 (0)