ref: 94c7903517dabd8c8bf72402890f2ca4174c75c4
parent: 735a7d2932d70b5bf232e2d021e6c0c61e03f61a
author: Ori Bernstein <ori@eigenstate.org>
date: Sun Sep 10 17:44:42 EDT 2017
Fix typo.
--- a/lib/bld.sub
+++ b/lib/bld.sub
@@ -4,6 +4,7 @@
date
escfmt
fileutil
+ http
inifile
json
regex
--- a/lib/fileutil/tmpdir.myr
+++ b/lib/fileutil/tmpdir.myr
@@ -6,7 +6,7 @@
const homedir = {
match std.getenv("TMPDIR")
- | `std.Some h: -> d
+ | `std.Some d: -> d
| `std.None: -> "/tmp"
;;
}