Skip to content

Commit

Permalink
Fix style issue in Intro to Java code snippets
Browse files Browse the repository at this point in the history
  • Loading branch information
100yo committed Oct 14, 2023
1 parent f56110f commit 71c26c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 01-intro-to-java/snippets/IntroToJava.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public static void exploreString() {

// 7. String templating - note that this is a Java 21 preview feature
String coder = "100yo";
String greeting = STR. "Good morning, \{ coder } Vellev" ;
String greeting = STR. "Good morning, \{ coder } Vellev";
System.out.println(greeting);

// 8. Emojis
Expand Down

0 comments on commit 71c26c3

Please sign in to comment.