Skip to content

Commit dc51226

Browse files
Jami CogswellJami Cogswell
authored andcommitted
C#: update qldocs
1 parent a1908be commit dc51226

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

csharp/ql/src/Telemetry/ExternalApi.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ private predicate isParameterlessConstructor(DotNet::Callable c) {
2929
c instanceof Constructor and c.getNumberOfParameters() = 0
3030
}
3131

32-
/** Holds if this API is part of a common testing library or framework. */
32+
/** Holds if the given callable is part of a common testing library or framework. */
3333
private predicate isTestLibrary(DotNet::Callable c) { c.getDeclaringType() instanceof TestLibrary }
3434

35-
/** Holds if this API is not worth supporting. */
35+
/** Holds if the given callable is not worth supporting. */
3636
predicate isUninteresting(DotNet::Callable c) { isTestLibrary(c) or isParameterlessConstructor(c) }
3737

3838
/**

0 commit comments

Comments
 (0)