diff options
Diffstat (limited to 'stdlib/source/lux/language/compiler/analysis/case')
-rw-r--r-- | stdlib/source/lux/language/compiler/analysis/case/coverage.lux | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/lux/language/compiler/analysis/case/coverage.lux b/stdlib/source/lux/language/compiler/analysis/case/coverage.lux index 70c9fa80f..4a15e372c 100644 --- a/stdlib/source/lux/language/compiler/analysis/case/coverage.lux +++ b/stdlib/source/lux/language/compiler/analysis/case/coverage.lux @@ -1,7 +1,7 @@ (.module: lux - (lux (control [monad #+ do] - ["ex" exception #+ exception:] + (lux (control [monad (#+ do)] + ["ex" exception (#+ exception:)] equivalence) (data [bool "bool/" Equivalence<Bool>] [number] @@ -9,9 +9,9 @@ [maybe] text/format (collection [list "list/" Fold<List>] - ["dict" dictionary #+ Dictionary]))) + ["dict" dictionary (#+ Dictionary)]))) [//// "operation/" Monad<Operation>] - [/// #+ Pattern Variant Operation]) + [/// (#+ Pattern Variant Operation)]) (def: cases (-> (Maybe Nat) Nat) |