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

Commit

Permalink
Merge pull request #65 from EdwardBetts/spelling
Browse files Browse the repository at this point in the history
correct spelling mistake
  • Loading branch information
garuma authored Oct 7, 2017
2 parents 0b83b90 + 0392702 commit b288288
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/MessageReaderTest.cs
Original file line number Diff line number Diff line change
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 b288288

Please sign in to comment.