Merge branch 'GP-0_ryanmkurtz_PR-6345_RoboSchmied_endianness-typo'

This commit is contained in:
Ryan Kurtz 2024-03-27 07:27:47 -04:00
commit 0f3351ab6a
58 changed files with 122 additions and 122 deletions

View file

@ -60,7 +60,7 @@ public class StructureDBTest extends AbstractGenericTest {
DataOrganizationImpl dataOrg = (DataOrganizationImpl) dataMgr.getDataOrganization();
dataOrg.setBigEndian(true);
// re-resolve with modified endianess
// re-resolve with modified endianness
struct = (StructureDB) dataMgr.resolve(structClone, null);
}
@ -1312,7 +1312,7 @@ public class StructureDBTest extends AbstractGenericTest {
public void testReplaceWith2() throws InvalidDataTypeException {
// NOTE: non-packed bitfields should remain unchanged when
// transitioning endianess even though it makes little sense.
// transitioning endianness even though it makes little sense.
// Unaligned structures are not intended to be portable!
TypeDef td = new TypedefDataType("Foo", IntegerDataType.dataType);

View file

@ -58,7 +58,7 @@ public class UnionDBTest extends AbstractGenericTest {
DataOrganizationImpl dataOrg = (DataOrganizationImpl) dataMgr.getDataOrganization();
dataOrg.setBigEndian(true);
// re-resolve with modified endianess
// re-resolve with modified endianness
union = (UnionDB) dataMgr.resolve(unionClone, null);
}