From fc54093049ba80c1d83cf694b0f42ff8126fe656 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 b60365a96..35644fda5 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 e2dc4a991..00e1cd416 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 6398f560e..2447fd4d9 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 +```