From b46a84fea3f75443d94739c910c27409dd75a2b4 Mon Sep 17 00:00:00 2001 From: Benjamin Michaelis Date: Wed, 10 Jan 2024 14:48:53 -0800 Subject: [PATCH] Update errata --- Errata.md | 4 +++- .../Listing02.16.NewLinesWithinStringInterpolation.cs | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Errata.md b/Errata.md index bc986563d..158f03b73 100644 --- a/Errata.md +++ b/Errata.md @@ -40,4 +40,6 @@ Zhou Jing | 23 | 1080 | Change "DWORD flProtect); // The type of memory allocati Zhou Jing | 22 | 1065 - 1066 | Changed 'Thread' to 'Task' and "Application exiting" to "Application shutting down" Zhou Jing | 4 | 161 | Fix `input < 9` to `input < 0` in Listing 4.24 Zhou Jing | 4 | 119 | Show inconsistent size multi-dimensional array in listing 3.16 -Zhou Jing | 3 | 114 | Replace `second` with `third` in "// Retrieve third item from the end (Python)" \ No newline at end of file +Zhou Jing | 3 | 114 | Replace `second` with `third` in "// Retrieve third item from the end (Python)" +| Zhou Jing | 9 | 507 | Remove duplicate URL's https://intellitect.com/WhyTupleBreaksTheImmutableRules | +| Zhou Jing | 8 | 455 | Replace "8.5" to "8.3" in listing reference in the sentence "Notice that CompareTo() in Listing 8.5" | \ No newline at end of file diff --git a/src/Chapter02/Listing02.16.NewLinesWithinStringInterpolation.cs b/src/Chapter02/Listing02.16.NewLinesWithinStringInterpolation.cs index 2cc97f85d..2ede60173 100644 --- a/src/Chapter02/Listing02.16.NewLinesWithinStringInterpolation.cs +++ b/src/Chapter02/Listing02.16.NewLinesWithinStringInterpolation.cs @@ -14,7 +14,7 @@ public static void Main() lastName = Console.ReadLine(); #region INCLUDE - Console.WriteLine($@"Your full name is: {firstName} {lastName}"); + Console.WriteLine($"Your full name is: {firstName} {lastName}"); #endregion INCLUDE } } \ No newline at end of file