aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/artifact/snapshot/version.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/program/aedifex/artifact/snapshot/version.lux')
-rw-r--r--stdlib/source/program/aedifex/artifact/snapshot/version.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/program/aedifex/artifact/snapshot/version.lux b/stdlib/source/program/aedifex/artifact/snapshot/version.lux
index a1a50fcc2..89af452e2 100644
--- a/stdlib/source/program/aedifex/artifact/snapshot/version.lux
+++ b/stdlib/source/program/aedifex/artifact/snapshot/version.lux
@@ -40,16 +40,16 @@
[<snapshot_version> "snapshotVersion"]
)
-(def: (format_text tag value)
+(def: (text_format tag value)
(-> xml.Tag Text XML)
(|> value #xml.Text list (#xml.Node tag xml.attributes)))
(def: #export (format (^slots [#extension #value #updated]))
(-> Version XML)
(<| (#xml.Node ..<snapshot_version> xml.attributes)
- (list (..format_text ..<extension> extension)
- (..format_text ..<value> value)
- (..format_text ..<updated> (///time.format updated)))))
+ (list (..text_format ..<extension> extension)
+ (..text_format ..<value> value)
+ (..text_format ..<updated> (///time.format updated)))))
(def: (text tag)
(-> xml.Tag (Parser Text))