Dataflow: review fixes

This commit is contained in:
Anders Schack-Mulligen
2023-09-21 11:50:04 +02:00
parent d285afba08
commit 3dadfa2243
2 changed files with 10 additions and 5 deletions

View File

@@ -4,7 +4,7 @@
private newtype TUnit = TMkUnit()
/** The trivial type with a single element. */
class Unit extends TUnit {
final class Unit extends TUnit {
/** Gets a textual representation of this element. */
string toString() { result = "unit" }
}