From ca48d0a3ab0f11b22dd90560b89ba8ec7aa08203 Mon Sep 17 00:00:00 2001 From: Mark Michaelis Date: Mon, 11 Sep 2023 17:11:27 +0100 Subject: [PATCH] Corrected comment --- src/Chapter09/Listing09.05.DeclaringRecordClass.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Chapter09/Listing09.05.DeclaringRecordClass.cs b/src/Chapter09/Listing09.05.DeclaringRecordClass.cs index 7c298c54a..013c3faa0 100644 --- a/src/Chapter09/Listing09.05.DeclaringRecordClass.cs +++ b/src/Chapter09/Listing09.05.DeclaringRecordClass.cs @@ -2,7 +2,7 @@ namespace AddisonWesley.Michaelis.EssentialCSharp.Chapter09.Listing09_05; #region INCLUDE -// Use the record struct construct to declare a value type +// Use the record class construct to declare a reference type public record class Coordinate( Angle Longitude, Angle Latitude) #endregion INCLUDE