diff --git a/LogViewer/LogViewer/Utilities/PX4BinaryLog.cs b/LogViewer/LogViewer/Utilities/PX4BinaryLog.cs
index b51203da3f..3a7290c7a6 100644
--- a/LogViewer/LogViewer/Utilities/PX4BinaryLog.cs
+++ b/LogViewer/LogViewer/Utilities/PX4BinaryLog.cs
@@ -452,7 +452,7 @@ void logEntryFMT(byte packettype, Stream br)
size = fmt.Length;
}
- // didnt find a match, return unknown packet type
+ // didn't find a match, return unknown packet type
if (size == 0)
return;
@@ -528,7 +528,7 @@ object ReadRow(byte packettype, Stream br)
size = fmt.Length;
}
- // didnt find a match, return unknown packet type
+ // didn't find a match, return unknown packet type
if (fmt == null)
return null;
@@ -607,7 +607,7 @@ string logEntry(byte packettype, Stream br)
size = fmt.Length;
}
- // didnt find a match, return unknown packet type
+ // didn't find a match, return unknown packet type
if (size == 0)
return "UNKW, " + packettype;
@@ -646,7 +646,7 @@ string logEntry(byte packettype, Stream br)
/// raw binary message
/// Message type name
/// format string containing packet structure
- /// formated ascii string
+ /// formatted ascii string
string ProcessMessage(byte[] message, string name, string format)
{
char[] form = format.ToCharArray();