Shared: Fix trailing and non-ascii whitespace.

This commit is contained in:
Anders Schack-Mulligen
2022-11-30 11:14:43 +01:00
parent ba56565125
commit 758cb8b412

View File

@@ -28,9 +28,9 @@ module Option<TypeWithToString T> {
/** Gets the wrapped element, if any. */
T asSome() { this = TSome(result) }
/** Holds if this option is the singleton `None`. */
predicate isNone() { this = TNone() }
predicate isNone() { this = TNone() }
}
/** The singleton `None` element. */