Skip to content

Commit 758cb8b

Browse files
committed
Shared: Fix trailing and non-ascii whitespace.
1 parent ba56565 commit 758cb8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shared/util/codeql/util/Option.qll

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ module Option<TypeWithToString T> {
2828

2929
/** Gets the wrapped element, if any. */
3030
T asSome() { this = TSome(result) }
31-
31+
3232
/** Holds if this option is the singleton `None`. */
33-
predicate isNone() { this = TNone() }
33+
predicate isNone() { this = TNone() }
3434
}
3535

3636
/** The singleton `None` element. */

0 commit comments

Comments
 (0)