Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/bhoffman0/CSAwesome
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Nov 22, 2023
2 parents b5efe46 + 91a6815 commit 90f99e4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion _sources/Unit8-2DArray/pictureLabA5.rst
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ You can use beach.jpg or one of the other images seen at the bottom of this less
}

/*
keepOnlyBlue() method sets the blue values at all pixels to zero.
keepOnlyBlue() method sets the red and green values at all pixels to zero.

Add new method here and call it from main.
*/
Expand Down
2 changes: 1 addition & 1 deletion _sources/Unit8-2DArray/topic-8-1-2D-arrays-Day2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ Try the code below. Did it print what you expected? When you print a two dimens
public void test2()
{
String code = getCode();
String expected = "new String [4][2]";
String expected = "new String[4][2]";

boolean passed = code.contains(expected);

Expand Down
4 changes: 2 additions & 2 deletions _sources/Unit8-2DArray/topic-8-2-2D-array-loops-Day2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -512,8 +512,8 @@ You can test the methods in the active code below or in this |replit project| or
}

/* Add new methods here.
keepOnlyBlue() method sets the blue values at all pixels to zero.
switchColors() method swaps the color values of pixels.
keepOnlyBlue() method sets the red and green values at all pixels to zero.
switchColors() method switches colors, for example the red values with green values, etc.
*/
/* Main method for testing
Expand Down

0 comments on commit 90f99e4

Please sign in to comment.