diff --git a/Source/Engine/Scripting/Attributes/Editor/RequireScriptAttribute.cs b/Source/Engine/Scripting/Attributes/Editor/RequireScriptAttribute.cs
index 9b3c4ccd1..414a13aeb 100644
--- a/Source/Engine/Scripting/Attributes/Editor/RequireScriptAttribute.cs
+++ b/Source/Engine/Scripting/Attributes/Editor/RequireScriptAttribute.cs
@@ -3,19 +3,19 @@ using System;
namespace FlaxEngine;
///
-/// This attribute is used to check for if a script requires another script type.
+/// This attribute is used to check for if a script requires other script types.
///
[Serializable]
[AttributeUsage(AttributeTargets.Class)]
public class RequireScriptAttribute : Attribute
{
///
- /// The required type.
+ /// The required types.
///
public Type[] RequiredTypes;
///
- /// Initializes a new instance of the class.
+ /// Initializes a new instance of the class.
///
/// The required type.
public RequireScriptAttribute(Type type)
@@ -24,7 +24,7 @@ public class RequireScriptAttribute : Attribute
}
///
- /// Initializes a new instance of the <see cref="RequireScriptAttribute"/> class.
+ /// Initializes a new instance of the class.
///
/// The required types.
public RequireScriptAttribute(Type[] types)