From ba55ec6520f53bc0aa21da34bef202df23fc838a Mon Sep 17 00:00:00 2001 From: Howard van Rooijen Date: Sat, 13 Mar 2021 16:32:20 +0000 Subject: [PATCH 1/2] Fix typo --- Solutions/Ais.Net/Ais/Net/ShipType.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Solutions/Ais.Net/Ais/Net/ShipType.cs b/Solutions/Ais.Net/Ais/Net/ShipType.cs index aaa2f6a..2a8096e 100644 --- a/Solutions/Ais.Net/Ais/Net/ShipType.cs +++ b/Solutions/Ais.Net/Ais/Net/ShipType.cs @@ -65,7 +65,7 @@ public enum ShipType HighSpeedCraftNoAdditionalInformation = 49, PilotVessel = 50, - SearchAndRescueCessel = 51, + SearchAndRescueVessel = 51, Tug = 52, PortTender = 53, AntiPollutionEquipment = 54, From 95aa0b182a49c4a81d950fed963d7aabe5ef10c0 Mon Sep 17 00:00:00 2001 From: Howard van Rooijen Date: Sat, 13 Mar 2021 16:32:42 +0000 Subject: [PATCH 2/2] Change the description which conflicts with the property name --- Solutions/Ais.Net/Ais/Net/NmeaAisLongRangeAisBroadcastParser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Solutions/Ais.Net/Ais/Net/NmeaAisLongRangeAisBroadcastParser.cs b/Solutions/Ais.Net/Ais/Net/NmeaAisLongRangeAisBroadcastParser.cs index dabcce9..6478879 100644 --- a/Solutions/Ais.Net/Ais/Net/NmeaAisLongRangeAisBroadcastParser.cs +++ b/Solutions/Ais.Net/Ais/Net/NmeaAisLongRangeAisBroadcastParser.cs @@ -79,7 +79,7 @@ public NmeaAisLongRangeAisBroadcastParser(ReadOnlySpan ascii, uint padding public uint SpeedOverGroundTenths => this.bits.GetUnsignedInteger(6, 79); /// - /// Gets the vessel's course over ground in units of one tenth of a degree. + /// Gets the vessel's course over ground in degrees. /// public uint CourseOverGroundDegrees => this.bits.GetUnsignedInteger(9, 85);