Skip to content

Commit 3d1ce55

Browse files
committed
C#: Address review comments
1 parent 20a1cb6 commit 3d1ce55

File tree

1 file changed

+5
-5
lines changed
  • csharp/ql/src/semmle/code/csharp/frameworks/test

1 file changed

+5
-5
lines changed

csharp/ql/src/semmle/code/csharp/frameworks/test/NUnit.qll

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -146,31 +146,31 @@ class NUnitAssertClass extends Class {
146146
result.hasName("IsNotNull")
147147
}
148148

149-
/** Gets an `void True(bool, ...)` method. */
149+
/** Gets a `True(bool, ...)` method. */
150150
Method getATrueMethod() {
151151
result.getDeclaringType() = this and
152152
result.hasName("True")
153153
}
154154

155-
/** Gets an `void IsTrue(bool, ...)` method. */
155+
/** Gets an `IsTrue(bool, ...)` method. */
156156
Method getAnIsTrueMethod() {
157157
result.getDeclaringType() = this and
158158
result.hasName("IsTrue")
159159
}
160160

161-
/** Gets an `void False(bool, ...)` method. */
161+
/** Gets a `False(bool, ...)` method. */
162162
Method getAFalseMethod() {
163163
result.getDeclaringType() = this and
164164
result.hasName("False")
165165
}
166166

167-
/** Gets an `void IsFalse(bool, ...)` method. */
167+
/** Gets an `IsFalse(bool, ...)` method. */
168168
Method getAnIsFalseMethod() {
169169
result.getDeclaringType() = this and
170170
result.hasName("IsFalse")
171171
}
172172

173-
/** Gets an `void That(...)` method. */
173+
/** Gets a `That(...)` method. */
174174
Method getAThatMethod() {
175175
result.getDeclaringType() = this and
176176
result.hasName("That")

0 commit comments

Comments
 (0)