diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..89f9ac0 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +out/ diff --git a/.idea/misc.xml b/.idea/misc.xml index 860c388..8210f62 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,6 +1,9 @@ - + + + \ No newline at end of file diff --git a/out/production/JavaIntro3Debrief/com/example/main/Main.class b/out/production/JavaIntro3Debrief/com/example/main/Main.class deleted file mode 100644 index 1c79707..0000000 Binary files a/out/production/JavaIntro3Debrief/com/example/main/Main.class and /dev/null differ diff --git a/src/com/example/main/Main.java b/src/com/example/main/Main.java index ebce634..c85b13c 100644 --- a/src/com/example/main/Main.java +++ b/src/com/example/main/Main.java @@ -13,7 +13,7 @@ public static void main(String[] args) { //create an array (not an ArrayList) called favoriteColors that holds five strings with your favoriteColors and print the entire array to the screen. - //Change the third element of facoriteColors to a different color and print that element to the sceen + //Change the third element of favoriteColors to a different color and print that element to the screen //Declare and initialize and array of type int called numbers to hold 1000 elements (this should be used later in the loop exercise)