Fix typos

This commit is contained in:
Wojciech Figat
2021-11-13 13:13:34 +01:00
parent 3648f8bef2
commit 6357cc6245
4 changed files with 6 additions and 6 deletions

View File

@@ -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"));
}