diff --git a/nanoFramework.CoreLibrary/System/BitConverter.cs b/nanoFramework.CoreLibrary/System/BitConverter.cs
index 9b480df9..8adec02d 100644
--- a/nanoFramework.CoreLibrary/System/BitConverter.cs
+++ b/nanoFramework.CoreLibrary/System/BitConverter.cs
@@ -225,7 +225,7 @@ public static extern bool IsLittleEndian
public static extern ushort ToUInt16(byte[] value, int startIndex);
///
- /// Returns a 32-bit unsigned integer converted from two bytes at a specified position in a byte array.
+ /// Returns a 32-bit unsigned integer converted from four bytes at a specified position in a byte array.
///
/// The array of bytes.
/// The starting position within value.
@@ -235,7 +235,7 @@ public static extern bool IsLittleEndian
public static extern uint ToUInt32(byte[] value, int startIndex);
///
- /// Returns a 64-bit unsigned integer converted from two bytes at a specified position in a byte array.
+ /// Returns a 64-bit unsigned integer converted from eight bytes at a specified position in a byte array.
///
/// The array of bytes.
/// The starting position within value.