diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-07-25 12:38:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-25 12:38:58 +0200 |
commit | 2f221e5fd507b176590bda52d08e499629ce7761 (patch) | |
tree | c24961857c5e7ccacc3291d22c1e4dabcee3c12b /modules/fbx | |
parent | a0f7f42b842462646281f5c4c9a8db070e034adc (diff) | |
parent | 3564c16cb851e2c5ae9f75d928e2f501ce5e3d6a (diff) |
Merge pull request #50250 from luzpaz/typos
Fix various typos
Diffstat (limited to 'modules/fbx')
-rw-r--r-- | modules/fbx/fbx_parser/ByteSwapper.h | 2 | ||||
-rw-r--r-- | modules/fbx/fbx_parser/FBXDocument.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/fbx/fbx_parser/ByteSwapper.h b/modules/fbx/fbx_parser/ByteSwapper.h index 5c16383974..08d38147d5 100644 --- a/modules/fbx/fbx_parser/ByteSwapper.h +++ b/modules/fbx/fbx_parser/ByteSwapper.h @@ -70,7 +70,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ---------------------------------------------------------------------- */ -/** @file Helper class tp perform various byte oder swappings +/** @file Helper class tp perform various byte order swappings (e.g. little to big endian) */ #ifndef BYTE_SWAPPER_H #define BYTE_SWAPPER_H diff --git a/modules/fbx/fbx_parser/FBXDocument.cpp b/modules/fbx/fbx_parser/FBXDocument.cpp index 89c69d2ee8..92c62e68b5 100644 --- a/modules/fbx/fbx_parser/FBXDocument.cpp +++ b/modules/fbx/fbx_parser/FBXDocument.cpp @@ -198,7 +198,7 @@ ObjectPtr LazyObject::LoadObject() { object.reset(new ModelLimbNode(id, element, doc, name)); } else if (strcmp(classtag.c_str(), "IKEffector") && strcmp(classtag.c_str(), "FKEffector")) { - // FK and IK effectors are not supporte + // FK and IK effectors are not supported. object.reset(new Model(id, element, doc, name)); } } else if (!strncmp(obtype, "Material", length)) { |