Skip to content

Commit 768403a

Browse files
committed
Clean up comments
1 parent d34be71 commit 768403a

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/NUnitEngine/nunit.engine.api/TestPackage.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ namespace NUnit.Engine
2626
public class TestPackage
2727
{
2828
/// <summary>
29-
/// Construct an anonymous TestPackage that wraps test files.
30-
/// Each file is added to the package as a subpackage.
29+
/// Construct a top-level TestPackage that wraps one or more
30+
/// test files, contained as subpackages.
3131
/// </summary>
3232
/// <param name="testFiles">Names of all the test files</param>
3333
/// <remarks>
@@ -39,8 +39,8 @@ public TestPackage(params string[] testFiles)
3939
}
4040

4141
/// <summary>
42-
/// Construct an anonymous TestPackage that wraps test files.
43-
/// Each file is added to the package as a subpackage.
42+
/// Construct a top-level TestPackage that wraps one or more
43+
/// test files, contained as subpackages.
4444
/// </summary>
4545
/// <param name="testFiles">Names of all the test files.</param>
4646
/// <remarks>
@@ -98,7 +98,7 @@ public string Name
9898
public IDictionary<string,object> Settings { get; } = new Dictionary<string, object>();
9999

100100
/// <summary>
101-
/// Add a subproject to the package.
101+
/// Add a subpackage to the package.
102102
/// </summary>
103103
/// <param name="subPackage">The subpackage to be added</param>
104104
public void AddSubPackage(TestPackage subPackage)
@@ -110,7 +110,7 @@ public void AddSubPackage(TestPackage subPackage)
110110
}
111111

112112
/// <summary>
113-
/// Add a subproject to the package, specifying its name. This is
113+
/// Add a subpackage to the package, specifying its name. This is
114114
/// the only way to add a named subpackage to the top-level package.
115115
/// </summary>
116116
/// <param name="packageName">The name of the subpackage to be added</param>

0 commit comments

Comments
 (0)