From 9de408e4e886d4455dcff1c6f3ed25cb707d7dfd Mon Sep 17 00:00:00 2001 From: Chandler Cox Date: Thu, 16 Nov 2023 21:46:37 -0600 Subject: [PATCH] Fix comments --- .../Scripting/Attributes/Editor/RequireScriptAttribute.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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)