From 950ef4250436ca8192bd4830c2b465c64e270c0e Mon Sep 17 00:00:00 2001
From: Trevor Hartman
<100978684+THartmanOfTheRedwoods@users.noreply.github.com>
Date: Thu, 11 Jan 2024 20:50:16 -0800
Subject: [PATCH 1/9] Update README.md
Fixed typo
---
README.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
index 5af4725..335072b 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@ Commit various errors in the Hello World program to observe and understand the c
1. Fork this repository to your own GitHub account.
2. Clone the forked repository locally to your machine.
-3. Create a new branch named Feature001.
+3. Create a new branch named Feature01.
## Instructions
Make each of the modifications listed below, and perform the steps noted after #10 for each error:
@@ -35,7 +35,7 @@ Save each error message screenshot like error01.png, error02.png, ..., errorN.pn
## Submission
Just as you did in the first lab (Reference the Lab video in your Week 1 module):
1. create a Feature01 branch of your code if you haven't already.
-2. Commit your working code and images to your local copy/Feature001 branch
+2. Commit your working code and images to your local copy/Feature01 branch
3. Push it to your Remote/origin branch (i.e. GitHub: Feature01 -> origin/Feature01)
4. Then issue a Pull request to my instructor repo
-5. **Make sure to COPY the Pull request URL and submit it for the lab/assignment in Canvas.**
\ No newline at end of file
+5. **Make sure to COPY the Pull request URL and submit it for the lab/assignment in Canvas.**
From ee00c0a38fdc2fe1aa7a9e7365cab05198851933 Mon Sep 17 00:00:00 2001
From: Trevor Hartman
<100978684+THartmanOfTheRedwoods@users.noreply.github.com>
Date: Thu, 18 Jan 2024 13:19:47 -0800
Subject: [PATCH 2/9] Update README.md
Added help video
---
README.md | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/README.md b/README.md
index 335072b..b9af36e 100644
--- a/README.md
+++ b/README.md
@@ -26,6 +26,10 @@ After making each change:
2. Read the error message (if any)
4. Ensure that you take a screenshot of each error message.
3. Then correct the error.
+
+
## Naming the Screenshots
Save each error message screenshot like error01.png, error02.png, ..., errorN.png, etc. in your project directory.
From f6104b8a914b23e98e6c1f192916a2019791a974 Mon Sep 17 00:00:00 2001
From: Trevor Hartman
<100978684+THartmanOfTheRedwoods@users.noreply.github.com>
Date: Thu, 18 Jan 2024 13:24:03 -0800
Subject: [PATCH 3/9] Update README.md
video help
---
README.md | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/README.md b/README.md
index b9af36e..956d69e 100644
--- a/README.md
+++ b/README.md
@@ -27,9 +27,7 @@ After making each change:
4. Ensure that you take a screenshot of each error message.
3. Then correct the error.
-
+Video Help: https://redwoods.us-west-2.instructuremedia.com/embed/236a53b6-5147-41ee-b436-613e6e30da74
## Naming the Screenshots
Save each error message screenshot like error01.png, error02.png, ..., errorN.png, etc. in your project directory.
From 2b83e6b5a62702afd389971aabaa9d96c1b8c53d Mon Sep 17 00:00:00 2001
From: Trevor Hartman
<100978684+THartmanOfTheRedwoods@users.noreply.github.com>
Date: Thu, 18 Jan 2024 13:26:06 -0800
Subject: [PATCH 4/9] Update README.md
testing
---
README.md | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 956d69e..02ab5c6 100644
--- a/README.md
+++ b/README.md
@@ -26,8 +26,9 @@ After making each change:
2. Read the error message (if any)
4. Ensure that you take a screenshot of each error message.
3. Then correct the error.
-
+
Video Help: https://redwoods.us-west-2.instructuremedia.com/embed/236a53b6-5147-41ee-b436-613e6e30da74
+
## Naming the Screenshots
Save each error message screenshot like error01.png, error02.png, ..., errorN.png, etc. in your project directory.
From b55b89fba36c09781e9874ca8d6cf17f4596d0b3 Mon Sep 17 00:00:00 2001
From: Trevor Hartman
<100978684+THartmanOfTheRedwoods@users.noreply.github.com>
Date: Thu, 18 Jan 2024 13:26:37 -0800
Subject: [PATCH 5/9] Update README.md
---
README.md | 3 ---
1 file changed, 3 deletions(-)
diff --git a/README.md b/README.md
index 02ab5c6..335072b 100644
--- a/README.md
+++ b/README.md
@@ -27,9 +27,6 @@ After making each change:
4. Ensure that you take a screenshot of each error message.
3. Then correct the error.
-Video Help: https://redwoods.us-west-2.instructuremedia.com/embed/236a53b6-5147-41ee-b436-613e6e30da74
-
-
## Naming the Screenshots
Save each error message screenshot like error01.png, error02.png, ..., errorN.png, etc. in your project directory.
From 7f86d47b705780c620c73b662b187f20655e663d Mon Sep 17 00:00:00 2001
From: CreeperKelten
Date: Sat, 20 Jan 2024 01:45:31 -0800
Subject: [PATCH 6/9] Kelten Stowe
---
src/HelloWorld.java | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/src/HelloWorld.java b/src/HelloWorld.java
index 16123db..af7d287 100644
--- a/src/HelloWorld.java
+++ b/src/HelloWorld.java
@@ -1,7 +1,11 @@
+/**
+ * @author Kelten Stowe
+ * @author Trevor Hartman
+ */
public class HelloWorld {
public static void main(String[] args) {
- System.out.println("Hello World");
- }
+ System.out.print("Hello World");
-}
+ }
+};
From 47f8db31bdac0d083431c584d6ff1e2f58a2169c Mon Sep 17 00:00:00 2001
From: CreeperKelten
Date: Sat, 20 Jan 2024 01:49:16 -0800
Subject: [PATCH 7/9] Kelten Stowe
---
src/HelloWorld.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/HelloWorld.java b/src/HelloWorld.java
index af7d287..c0e8108 100644
--- a/src/HelloWorld.java
+++ b/src/HelloWorld.java
@@ -8,4 +8,4 @@ public static void main(String[] args) {
System.out.print("Hello World");
}
-};
+}
From c9d82bdd2997dc80aafcfea0344fb6c32ab2721b Mon Sep 17 00:00:00 2001
From: CreeperKelten
Date: Sat, 20 Jan 2024 01:52:44 -0800
Subject: [PATCH 8/9] Kelten Stowe
---
src/HelloWorld.java | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/HelloWorld.java b/src/HelloWorld.java
index c0e8108..db4a6ce 100644
--- a/src/HelloWorld.java
+++ b/src/HelloWorld.java
@@ -1,6 +1,7 @@
/**
* @author Kelten Stowe
* @author Trevor Hartman
+ *
*/
public class HelloWorld {
From 1820eaf0019aa1300ed05899154c96f9b2497967 Mon Sep 17 00:00:00 2001
From: CreeperKelten
Date: Sat, 20 Jan 2024 01:58:28 -0800
Subject: [PATCH 9/9] Kelten Stowe
---
src/HelloWorld.java | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/HelloWorld.java b/src/HelloWorld.java
index db4a6ce..2712dd4 100644
--- a/src/HelloWorld.java
+++ b/src/HelloWorld.java
@@ -10,3 +10,4 @@ public static void main(String[] args) {
}
}
+