docs: fixing typos and formating

This commit is contained in:
zanninso 2024-03-26 15:02:36 +00:00 committed by zanninso
parent 6edb50155f
commit fc54093049
3 changed files with 4 additions and 5 deletions

View File

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

View File

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

View File

@ -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
$
```
```