aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/pom.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-08-08 17:56:15 -0400
committerEduardo Julian2021-08-08 17:56:15 -0400
commitf621a133e6e0a516c0586270fea8eaffb4829d82 (patch)
tree399396ee2f6a10df10cea9b78c51c76679b70e59 /stdlib/source/program/aedifex/pom.lux
parent17e7566be51df5e428a6b10e6469201a8a9468da (diff)
No more #export magic syntax.
Diffstat (limited to 'stdlib/source/program/aedifex/pom.lux')
-rw-r--r--stdlib/source/program/aedifex/pom.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/program/aedifex/pom.lux b/stdlib/source/program/aedifex/pom.lux
index e1f242b69..13900d276 100644
--- a/stdlib/source/program/aedifex/pom.lux
+++ b/stdlib/source/program/aedifex/pom.lux
@@ -41,7 +41,7 @@
(def: artifact_tag "artifactId")
(def: version_tag "version")
-(def: #export file
+(def: .public file
file.Path
"pom.xml")
@@ -138,7 +138,7 @@
))
)
-(def: #export (write value)
+(def: .public (write value)
(-> /.Profile (Try XML))
(case (get@ #/.identity value)
(#.Some identity)
@@ -210,7 +210,7 @@
(<| (<xml>.node ["" "parent"])
..own_version))
-(def: #export parser
+(def: .public parser
(Parser /.Profile)
(do {! <>.monad}
[own_version (<>.else "" (<xml>.somewhere ..own_version))