Skip to content

Commit

Permalink
docs: fixing typos
Browse files Browse the repository at this point in the history
  • Loading branch information
zanninso committed May 15, 2024
1 parent 3818734 commit 15b223d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion subjects/java/checkpoints/system-logger/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Here is a possible `ExerciseRunner.java` to test your function :
```java
public class ExerciseRunner {
public static void main(String[] args) {
System.out.println(SystemLog.systemLog('message'));
System.out.println(SystemLog.systemLog("message"));
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion subjects/java/checkpoints/universal-greeting/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Here is a possible `ExerciseRunner.java` to test your function :
```java
public class ExerciseRunner {
public static void main(String[] args) {
System.out.println(UniversalGreeting.greeting('EN'));
System.out.println(UniversalGreeting.greeting("EN"));
}
}
```
Expand Down

0 comments on commit 15b223d

Please sign in to comment.