Skip to content

Commit 40ba33e

Browse files
Update errata
1 parent 7032b47 commit 40ba33e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Errata.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,5 @@ Zhou Jing | 4 | 119 | Show inconsistent size multi-dimensional array in listi
4343
Zhou Jing | 3 | 114 | Replace `second` with `third` in "// Retrieve third item from the end (Python)"
4444
Tyler Woody | 13 | 702 | Remove the `!` negation in `string.IsNullOrWhiteSpace(input)` in the while loop to properly allow looping
4545
Benjamin Michaelis | 19 | 948-949 | Add a `(` before the `next + 1` to complete the parenthesis.
46+
Zhou Jing | 9 | 507 | Remove duplicate URL's https://intellitect.com/WhyTupleBreaksTheImmutableRules |
47+
Zhou Jing | 8 | 455 | Replace "8.5" to "8.3" in listing reference in the sentence "Notice that CompareTo() in Listing 8.5" |

src/Chapter02/Listing02.16.NewLinesWithinStringInterpolation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public static void Main()
1414
lastName = Console.ReadLine();
1515

1616
#region INCLUDE
17-
Console.WriteLine($@"Your full name is: {firstName} {lastName}");
17+
Console.WriteLine($"Your full name is: {firstName} {lastName}");
1818
#endregion INCLUDE
1919
}
2020
}

0 commit comments

Comments
 (0)