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

Commit b288288

Browse files
authored
Merge pull request #65 from EdwardBetts/spelling
correct spelling mistake
2 parents 0b83b90 + 0392702 commit b288288

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/MessageReaderTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ public void ReadSameAlignementStructNonNativeEndian ()
173173
Array.Copy (BitConverter.GetBytes ((long)1), 0, data, 0, 8);
174174
Array.Copy (BitConverter.GetBytes (ulong.MaxValue), 0, data, 8, 8);
175175
Array.Copy (BitConverter.GetBytes ((double)3.3), 0, data, 16, 8);
176-
// Swap value to simulate other endianess
176+
// Swap value to simulate other endianness
177177
for (int i = 0; i < data.Length; i += 8) {
178178
for (int j = 0; j < 4; j++) {
179179
data[i + j] = (byte)(data[i + j] ^ data[i + 7 - j]);

0 commit comments

Comments
 (0)