Skip to content
This repository has been archived by the owner on Nov 8, 2022. It is now read-only.

Commit

Permalink
correct spelling mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwardBetts committed Sep 1, 2017
1 parent 2686c4f commit 0392702
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/MessageReaderTest.cs
Expand Up @@ -173,7 +173,7 @@ public void ReadSameAlignementStructNonNativeEndian ()
Array.Copy (BitConverter.GetBytes ((long)1), 0, data, 0, 8);
Array.Copy (BitConverter.GetBytes (ulong.MaxValue), 0, data, 8, 8);
Array.Copy (BitConverter.GetBytes ((double)3.3), 0, data, 16, 8);
// Swap value to simulate other endianess
// Swap value to simulate other endianness
for (int i = 0; i < data.Length; i += 8) {
for (int j = 0; j < 4; j++) {
data[i + j] = (byte)(data[i + j] ^ data[i + 7 - j]);
Expand Down

0 comments on commit 0392702

Please sign in to comment.