Skip to content

Commit 6132900

Browse files
committed
Java: add full stops for ql docs
1 parent c836104 commit 6132900

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/ql/src/Violations of Best Practice/Implementation Hiding/VisibleForTestingAbuse.ql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ predicate isWithinType(Callable c, RefType t) {
2424
}
2525

2626
/**
27-
* Holds if `e` is within the same package as `t`
27+
* Holds if `e` is within the same package as `t`.
2828
*/
2929
predicate isWithinPackage(Expr e, RefType t) {
3030
e.getCompilationUnit().getPackage() = t.getPackage()
3131
}
3232

3333
/**
34-
* Holds if a callable or any of its enclosing callables is annotated with @VisibleForTesting
34+
* Holds if a callable or any of its enclosing callables is annotated with @VisibleForTesting.
3535
*/
3636
predicate isWithinVisibleForTestingContext(Callable c) {
3737
c.getAnAnnotation().getType().hasName("VisibleForTesting")

0 commit comments

Comments
 (0)