diff --git a/Source/Engine/Content/Assets/SkinnedModel.h b/Source/Engine/Content/Assets/SkinnedModel.h index 32be6df3d..91ad34e36 100644 --- a/Source/Engine/Content/Assets/SkinnedModel.h +++ b/Source/Engine/Content/Assets/SkinnedModel.h @@ -121,7 +121,7 @@ public: /// /// Finds the node with the given name. /// - /// Thr name of the node. + /// The name of the node. /// The index of the node or -1 if not found. API_FUNCTION() FORCE_INLINE int32 FindNode(const StringView& name) { @@ -131,7 +131,7 @@ public: /// /// Finds the bone with the given name. /// - /// Thr name of the node used by the bone. + /// The name of the node used by the bone. /// The index of the bone or -1 if not found. API_FUNCTION() FORCE_INLINE int32 FindBone(const StringView& name) { diff --git a/Source/Engine/Content/Content.h b/Source/Engine/Content/Content.h index d0a277de8..a6fcd8449 100644 --- a/Source/Engine/Content/Content.h +++ b/Source/Engine/Content/Content.h @@ -340,14 +340,14 @@ public: } /// - /// Creates temporary and virtual asset of thr given type. + /// Creates temporary and virtual asset of the given type. /// /// The asset type klass. /// Created asset or null if failed. API_FUNCTION() static Asset* CreateVirtualAsset(API_PARAM(Attributes="TypeReference(typeof(Asset))") MClass* type); /// - /// Creates temporary and virtual asset of thr given type. + /// Creates temporary and virtual asset of the given type. /// /// The asset type. /// Created asset or null if failed. diff --git a/Source/Engine/ContentImporters/ImportIES.h b/Source/Engine/ContentImporters/ImportIES.h index 158613958..7bd76d160 100644 --- a/Source/Engine/ContentImporters/ImportIES.h +++ b/Source/Engine/ContentImporters/ImportIES.h @@ -32,7 +32,7 @@ public: /// Extracts IES profile data to R16 format (float). /// /// The result data container. - /// Thr multiplier as the texture is normalized. + /// The multiplier as the texture is normalized. float ExtractInR16(Array& output); public: diff --git a/Source/Tools/Flax.Build/Bindings/ClassInfo.cs b/Source/Tools/Flax.Build/Bindings/ClassInfo.cs index 598e53e53..627938a33 100644 --- a/Source/Tools/Flax.Build/Bindings/ClassInfo.cs +++ b/Source/Tools/Flax.Build/Bindings/ClassInfo.cs @@ -66,7 +66,7 @@ namespace Flax.Build.Bindings if (BaseType is ClassInfo baseClass) { if (baseClass.IsStatic) - throw new Exception(string.Format("Class {0} inherits from thr class {1} that is {2}.", FullNameNative, baseClass.FullNameNative, "static")); + throw new Exception(string.Format("Class {0} inherits from the class {1} that is {2}.", FullNameNative, baseClass.FullNameNative, "static")); if (baseClass.IsSealed) throw new Exception(string.Format("Class {0} inherits from the class {1} that is {2}.", FullNameNative, baseClass.FullNameNative, "sealed")); }