From c9a6403d38c35e033fca15592e04b8b8a13731fc Mon Sep 17 00:00:00 2001 From: zanninso Date: Tue, 26 Mar 2024 15:02:36 +0000 Subject: [PATCH] docs: fixing typos and formating --- subjects/java/checkpoints/helloworld/README.md | 2 +- subjects/java/checkpoints/system-logger/README.md | 2 +- subjects/java/checkpoints/universal-greeting/README.md | 5 ++--- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/subjects/java/checkpoints/helloworld/README.md b/subjects/java/checkpoints/helloworld/README.md index b60365a9..35644fda 100644 --- a/subjects/java/checkpoints/helloworld/README.md +++ b/subjects/java/checkpoints/helloworld/README.md @@ -33,4 +33,4 @@ $ javac *.java -d build $ java -cp build ExerciseRunner Hello World ! $ -``` \ No newline at end of file +``` diff --git a/subjects/java/checkpoints/system-logger/README.md b/subjects/java/checkpoints/system-logger/README.md index e2dc4a99..00e1cd41 100644 --- a/subjects/java/checkpoints/system-logger/README.md +++ b/subjects/java/checkpoints/system-logger/README.md @@ -33,4 +33,4 @@ $ javac *.java -d build $ java -cp build ExerciseRunner System Log: message $ -``` \ No newline at end of file +``` diff --git a/subjects/java/checkpoints/universal-greeting/README.md b/subjects/java/checkpoints/universal-greeting/README.md index 6398f560..2447fd4d 100644 --- a/subjects/java/checkpoints/universal-greeting/README.md +++ b/subjects/java/checkpoints/universal-greeting/README.md @@ -2,13 +2,12 @@ ### Instructions -In a file named `UniversalGreeting.java` write a function `greeting` that take a String language as parametre and return a greating message based on the language as follows: +In a file named `UniversalGreeting.java` write a function `greeting` that takes a String language as a parameter and returns a greeting message based on the language as follows: FR : Bonjour comment allez-vous EN : Hello, How are you ES : Hola, cómo estás - ### Expected Functions ```java @@ -38,4 +37,4 @@ $ javac *.java -d build $ java -cp build ExerciseRunner Hello, How are you $ -``` \ No newline at end of file +```