diff --git a/src/NmeaParser/Nmea/Gga.cs b/src/NmeaParser/Nmea/Gga.cs
index a79fca0..bdda051 100644
--- a/src/NmeaParser/Nmea/Gga.cs
+++ b/src/NmeaParser/Nmea/Gga.cs
@@ -18,7 +18,7 @@ using System.Globalization;
namespace NmeaParser.Nmea
{
///
- /// Global Positioning System Fix Data
+ /// Global Positioning System Fix Data
///
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Gpgga")]
[NmeaMessageType("--GGA")]
diff --git a/src/NmeaParser/Nmea/Gll.cs b/src/NmeaParser/Nmea/Gll.cs
index f7bcf60..55f680a 100644
--- a/src/NmeaParser/Nmea/Gll.cs
+++ b/src/NmeaParser/Nmea/Gll.cs
@@ -17,7 +17,7 @@ using System;
namespace NmeaParser.Nmea
{
///
- /// Geographic position, latitude / longitude
+ /// Geographic position, latitude / longitude
///
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Gll")]
[NmeaMessageType("--GLL")]
diff --git a/src/NmeaParser/Nmea/Gsa.cs b/src/NmeaParser/Nmea/Gsa.cs
index 5407b2d..6faad25 100644
--- a/src/NmeaParser/Nmea/Gsa.cs
+++ b/src/NmeaParser/Nmea/Gsa.cs
@@ -19,7 +19,7 @@ using System.Globalization;
namespace NmeaParser.Nmea
{
///
- /// Global Positioning System Fix Data
+ /// Global Positioning System DOP and active satellites
///
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Gsa")]
[NmeaMessageType("--GSA")]
diff --git a/src/NmeaParser/Nmea/Gsv.cs b/src/NmeaParser/Nmea/Gsv.cs
index 0b92e55..dfd6730 100644
--- a/src/NmeaParser/Nmea/Gsv.cs
+++ b/src/NmeaParser/Nmea/Gsv.cs
@@ -11,16 +11,16 @@
// * See the License for the specific language governing permissions and
// * limitations under the License.
// ******************************************************************************
-
-using System;
-using System.Collections.Generic;
-using System.Globalization;
-
-namespace NmeaParser.Nmea
+
+using System;
+using System.Collections.Generic;
+using System.Globalization;
+
+namespace NmeaParser.Nmea
{
- ///
- /// GPS Satellites in view
- ///
+ ///
+ /// GPS Satellites in view
+ ///
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Gsv")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1710:IdentifiersShouldHaveCorrectSuffix")]
[NmeaMessageType("--GSV")]
@@ -51,40 +51,40 @@ namespace NmeaParser.Nmea
this.SVs = svs.ToArray();
}
- ///
- /// Total number of messages of this type in this cycle
- ///
+ ///
+ /// Total number of messages of this type in this cycle
+ ///
public int TotalMessages { get; }
- ///
- /// Message number
- ///
+ ///
+ /// Message number
+ ///
public int MessageNumber { get; }
- ///
- /// Total number of SVs in view
- ///
+ ///
+ /// Total number of SVs in view
+ ///
public int SVsInView { get; }
- ///
- /// Satellite vehicles in this message part.
- ///
+ ///
+ /// Satellite vehicles in this message part.
+ ///
public IReadOnlyList SVs { get; }
- ///
- /// Returns an enumerator that iterates through the collection.
- ///
- /// A System.Collections.Generic.IEnumerator{SatelliteVehicle} that can be used to iterate through the collection.
+ ///
+ /// Returns an enumerator that iterates through the collection.
+ ///
+ /// A System.Collections.Generic.IEnumerator{SatelliteVehicle} that can be used to iterate through the collection.
public IEnumerator GetEnumerator()
{
foreach (var sv in SVs)
yield return sv;
}
- ///
- /// Returns an enumerator that iterates through a collection.
- ///
- /// An System.Collections.IEnumerator object that can be used to iterate through the collection.
+ ///
+ /// Returns an enumerator that iterates through a collection.
+ ///
+ /// An System.Collections.IEnumerator object that can be used to iterate through the collection.
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
{
return GetEnumerator();
diff --git a/src/NmeaParser/Nmea/Rmc.cs b/src/NmeaParser/Nmea/Rmc.cs
index 146b07f..89af646 100644
--- a/src/NmeaParser/Nmea/Rmc.cs
+++ b/src/NmeaParser/Nmea/Rmc.cs
@@ -18,7 +18,7 @@ using System.Globalization;
namespace NmeaParser.Nmea
{
///
- /// Recommended Minimum
+ /// Recommended Minimum
///
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Gprmc")]
[NmeaMessageType("--RMC")]
diff --git a/src/NmeaParser/Nmea/Vtg.cs b/src/NmeaParser/Nmea/Vtg.cs
index 0c12950..5ffd659 100644
--- a/src/NmeaParser/Nmea/Vtg.cs
+++ b/src/NmeaParser/Nmea/Vtg.cs
@@ -17,7 +17,7 @@ using System;
namespace NmeaParser.Nmea
{
///
- /// Course over ground and ground speed
+ /// Course over ground and ground speed
///
///
/// The actual course and speed relative to the ground.