aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/data/format/tar.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/lux/data/format/tar.lux')
-rw-r--r--stdlib/source/lux/data/format/tar.lux16
1 files changed, 8 insertions, 8 deletions
diff --git a/stdlib/source/lux/data/format/tar.lux b/stdlib/source/lux/data/format/tar.lux
index 65e25c528..c18d81d33 100644
--- a/stdlib/source/lux/data/format/tar.lux
+++ b/stdlib/source/lux/data/format/tar.lux
@@ -18,10 +18,10 @@
["n" nat]
["." i64]]
["." format #_
- ["#" binary (#+ Writer) ("#@." monoid)]]
+ ["#" binary (#+ Writer) ("#\." monoid)]]
[collection
- ["." list ("#@." fold)]
- ["." row (#+ Row) ("#@." fold)]]]
+ ["." list ("#\." fold)]
+ ["." row (#+ Row) ("#\." fold)]]]
[time
["." instant (#+ Instant)]
["." duration]]
@@ -56,7 +56,7 @@
Nat
(|> ..octal-size
(list.repeat <size>)
- (list@fold n.* 1)
+ (list\fold n.* 1)
inc))
(exception: #export (<exception> {value Nat})
@@ -515,7 +515,7 @@
Nat
(|> ..octal-size
(list.repeat ..content-size)
- (list@fold n.* 1)))
+ (list\fold n.* 1)))
(abstract: #export Content
[Big Binary]
@@ -720,9 +720,9 @@
(Writer Tar)
(let [end-of-archive (binary.create ..end-of-archive-size)]
(function (_ tar)
- (format@compose (row@fold (function (_ next total)
- (format@compose total (..entry-writer next)))
- format@identity
+ (format\compose (row\fold (function (_ next total)
+ (format\compose total (..entry-writer next)))
+ format\identity
tar)
(format.segment ..end-of-archive-size end-of-archive)))))