diff options
Diffstat (limited to 'java.html.markdown')
| -rw-r--r-- | java.html.markdown | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/java.html.markdown b/java.html.markdown index fa5cf8fc..c2c1a18b 100644 --- a/java.html.markdown +++ b/java.html.markdown @@ -331,7 +331,7 @@ public class LearnJava {          // Starting in Java 7 and above, switching Strings works like this:          String myAnswer = "maybe"; -        switch(myAnswer){ +        switch(myAnswer) {              case "yes":                  System.out.println("You answered yes.");                  break; | 
