aboutsummaryrefslogtreecommitdiff
path: root/licentia/source/program/licentia/output.lux
diff options
context:
space:
mode:
Diffstat (limited to 'licentia/source/program/licentia/output.lux')
-rw-r--r--licentia/source/program/licentia/output.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/licentia/source/program/licentia/output.lux b/licentia/source/program/licentia/output.lux
index c271f3005..3429df952 100644
--- a/licentia/source/program/licentia/output.lux
+++ b/licentia/source/program/licentia/output.lux
@@ -167,7 +167,7 @@
(def: .public (extension value)
(-> Extension Text)
(let [[show? document] (case (value@ #license.notification_period value)
- (#.Some period)
+ {#.Some period}
[true (extension.notification_requirement period)]
#.None
@@ -195,14 +195,14 @@
(-> Attribution Text)
(let [copyright_notice (format "Attribution Copyright Notice: " (value@ #license.copyright_notice value))
phrase (case (value@ #license.phrase value)
- (#.Some phrase)
+ {#.Some phrase}
(format text.new_line "Attribution Phrase: " phrase text.new_line)
#.None
"")
url (format text.new_line "Attribution URL: " (value@ #license.url value))
image (case (value@ #license.image value)
- (#.Some image)
+ {#.Some image}
(format text.new_line "Attribution Image: " image)
#.None
@@ -258,7 +258,7 @@
(maybe\each ..identification)
(maybe.default ""))
identified? (case (value@ #license.identification value)
- (#.Some _)
+ {#.Some _}
true
#.None