Skip to content

Commit 5dc09da

Browse files
committed
order of descriptions fixed
1 parent aa2b6fe commit 5dc09da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

BHoM_Engine/Query/IsNull.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ public static partial class Query
3939

4040
[Description("Checks if a collection is null or empty and outputs relevant error message.")]
4141
[Input("collection", "The collection to test for null value or emptiness.")]
42-
[Input("methodName", "The name of the method to reference in the error message.")]
4342
[Input("msg", "Optional message to be returned in addition to the generated error message.")]
43+
[Input("methodName", "The name of the method to reference in the error message.")]
4444
[Output("isNull", "True if the collection is null or empty.")]
4545
public static bool IsNullOrEmpty<T>(this IEnumerable<T> collection, string msg = "", [CallerMemberName] string methodName = "")
4646
{
@@ -51,8 +51,8 @@ public static bool IsNullOrEmpty<T>(this IEnumerable<T> collection, string msg =
5151

5252
[Description("Checks if a collection is null and outputs relevant error message.")]
5353
[Input("collection", "The collection to test for null value.")]
54-
[Input("methodName", "The name of the method to reference in the error message.")]
5554
[Input("msg", "Optional message to be returned in addition to the generated error message.")]
55+
[Input("methodName", "The name of the method to reference in the error message.")]
5656
[Output("isNull", "True if the collection is null.")]
5757
public static bool IsNull<T>(this IEnumerable<T> collection, string msg = "", [CallerMemberName] string methodName = "")
5858
{

0 commit comments

Comments
 (0)