Skip to content

Commit b1001d1

Browse files
committed
make TypeWithToString private inside the shared pack
1 parent 0e42609 commit b1001d1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

shared/util/codeql/util/Either.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/** Provides a module for constructing a union `Either` type. */
22

33
/** A type with `toString`. */
4-
signature class TypeWithToString {
4+
private signature class TypeWithToString {
55
string toString();
66
}
77

shared/util/codeql/util/Option.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/** Provides a module for constructing optional versions of types. */
22

33
/** A type with `toString`. */
4-
signature class TypeWithToString {
4+
private signature class TypeWithToString {
55
string toString();
66
}
77

0 commit comments

Comments
 (0)