aboutsummaryrefslogtreecommitdiff
path: root/src/lux/compiler/io.clj
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lux/compiler/io.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lux/compiler/io.clj b/src/lux/compiler/io.clj
index 176b4340d..0e7982a7f 100644
--- a/src/lux/compiler/io.clj
+++ b/src/lux/compiler/io.clj
@@ -11,7 +11,7 @@
))
;; [Resources]
-(defn read-file [path]
+(defn read-file [^String path]
(let [file (new java.io.File path)]
(if (.exists file)
(return (slurp file))