shithub: mc

Download patch

ref: 90fcb10fa853eb2423ea2351f41a18e2ac0247d6
parent: 52a9615661dfd2c9d4114b1a6f1d48830c3e3427
author: Ori Bernstein <[email protected]>
date: Tue Sep 12 19:16:35 EDT 2017

Fix typos.

--- a/lib/fileutil/tmpdir.myr
+++ b/lib/fileutil/tmpdir.myr
@@ -1,10 +1,10 @@
 use std
 
 pkg fileutil =
-	const homedir	: (-> byte[:])
+	const tmpdir	: (-> byte[:])
 ;;
 
-const homedir = {
+const tmpdir = {
 	match std.getenv("TMPDIR")
 	| `std.Some d:	-> d
 	| `std.None:	-> "/tmp"