From f8d7684251f4bd4cbdb22362742db02bee64dd94 Mon Sep 17 00:00:00 2001 From: zanninso Date: Wed, 27 Mar 2024 17:37:43 +0000 Subject: [PATCH] rename good-bye-mars exercise to goodby-mars --- .../checkpoints/{good-bye-mars => goodbye-mars}/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename subjects/java/checkpoints/{good-bye-mars => goodbye-mars}/README.md (90%) diff --git a/subjects/java/checkpoints/good-bye-mars/README.md b/subjects/java/checkpoints/goodbye-mars/README.md similarity index 90% rename from subjects/java/checkpoints/good-bye-mars/README.md rename to subjects/java/checkpoints/goodbye-mars/README.md index 252cf449..8b69f364 100644 --- a/subjects/java/checkpoints/good-bye-mars/README.md +++ b/subjects/java/checkpoints/goodbye-mars/README.md @@ -2,7 +2,7 @@ ### Instructions -In a file named `GoodbyeMars.java` write a function `goodbyeMars` that returns the string 'Good bye Mars !'. +In a file named `GoodbyeMars.java` write a function `goodbyeMars` that returns the string 'Goodbye Mars !'. ### Expected Functions @@ -31,6 +31,6 @@ and its output : ```shell $ javac *.java -d build $ java -cp build ExerciseRunner -Good bye Mars ! +Goodbye Mars ! $ ```