BAEL-3587: Corrected mis-numbering in comments.

This commit is contained in:
Justin Albano
2020-03-24 19:57:56 -04:00
parent 216007d018
commit d48a3a91d6

View File

@@ -39,7 +39,7 @@ public class AddingNewLineToString {
rhyme = line1 + System.getProperty("line.separator") + line2; rhyme = line1 + System.getProperty("line.separator") + line2;
System.out.println(rhyme); System.out.println(rhyme);
//6. Using %n //7. Using %n
System.out.println("7. Using %n"); System.out.println("7. Using %n");
rhyme = "Humpty Dumpty sat on a wall.%nHumpty Dumpty had a great fall."; rhyme = "Humpty Dumpty sat on a wall.%nHumpty Dumpty had a great fall.";
System.out.println(rhyme); System.out.println(rhyme);