diff --git a/BHoM_Engine/Query/IsNull.cs b/BHoM_Engine/Query/IsNull.cs index 1a1d062c0..837c51c8c 100644 --- a/BHoM_Engine/Query/IsNull.cs +++ b/BHoM_Engine/Query/IsNull.cs @@ -39,8 +39,8 @@ public static partial class Query [Description("Checks if a collection is null or empty and outputs relevant error message.")] [Input("collection", "The collection to test for null value or emptiness.")] - [Input("methodName", "The name of the method to reference in the error message.")] [Input("msg", "Optional message to be returned in addition to the generated error message.")] + [Input("methodName", "The name of the method to reference in the error message.")] [Output("isNull", "True if the collection is null or empty.")] public static bool IsNullOrEmpty(this IEnumerable collection, string msg = "", [CallerMemberName] string methodName = "") { @@ -51,8 +51,8 @@ public static bool IsNullOrEmpty(this IEnumerable collection, string msg = [Description("Checks if a collection is null and outputs relevant error message.")] [Input("collection", "The collection to test for null value.")] - [Input("methodName", "The name of the method to reference in the error message.")] [Input("msg", "Optional message to be returned in addition to the generated error message.")] + [Input("methodName", "The name of the method to reference in the error message.")] [Output("isNull", "True if the collection is null.")] public static bool IsNull(this IEnumerable collection, string msg = "", [CallerMemberName] string methodName = "") {