From 4eaab2eef3713907ca37bfb2f7f47e3fc2785214 Mon Sep 17 00:00:00 2001 From: Michael Render Date: Thu, 2 May 2024 16:09:41 -0400 Subject: [PATCH] Fill out XML comments on OrderAttribute --- src/NUnitFramework/framework/Attributes/OrderAttribute.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NUnitFramework/framework/Attributes/OrderAttribute.cs b/src/NUnitFramework/framework/Attributes/OrderAttribute.cs index 5944ad2535..4d41b645dc 100644 --- a/src/NUnitFramework/framework/Attributes/OrderAttribute.cs +++ b/src/NUnitFramework/framework/Attributes/OrderAttribute.cs @@ -13,14 +13,14 @@ namespace NUnit.Framework public class OrderAttribute : NUnitAttribute, IApplyToTest, IApplyToTestSuite { /// - /// Defines the order that the test will run in + /// The order that the test will run in /// public readonly int Order; /// /// Defines the order that the test will run in /// - /// + /// The order that the test will run in public OrderAttribute(int order) { Order = order;