Browse Source

docs: fixing typos and formating

pull/2511/head
zanninso 2 months ago
parent
commit
c9a6403d38
  1. 2
      subjects/java/checkpoints/helloworld/README.md
  2. 2
      subjects/java/checkpoints/system-logger/README.md
  3. 5
      subjects/java/checkpoints/universal-greeting/README.md

2
subjects/java/checkpoints/helloworld/README.md

@ -33,4 +33,4 @@ $ javac *.java -d build
$ java -cp build ExerciseRunner $ java -cp build ExerciseRunner
Hello World ! Hello World !
$ $
``` ```

2
subjects/java/checkpoints/system-logger/README.md

@ -33,4 +33,4 @@ $ javac *.java -d build
$ java -cp build ExerciseRunner $ java -cp build ExerciseRunner
System Log: message System Log: message
$ $
``` ```

5
subjects/java/checkpoints/universal-greeting/README.md

@ -2,13 +2,12 @@
### Instructions ### 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 FR : Bonjour comment allez-vous
EN : Hello, How are you EN : Hello, How are you
ES : Hola, cómo estás ES : Hola, cómo estás
### Expected Functions ### Expected Functions
```java ```java
@ -38,4 +37,4 @@ $ javac *.java -d build
$ java -cp build ExerciseRunner $ java -cp build ExerciseRunner
Hello, How are you Hello, How are you
$ $
``` ```

Loading…
Cancel
Save