From 5287007cd685f7695bafcc6c54dd6bebc728c685 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Tue, 9 Apr 2019 09:05:47 -0400 Subject: [PATCH] Fix typo in comment. --- src/boot/boot.janet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boot/boot.janet b/src/boot/boot.janet index 2a9268ec..6e8a54dd 100644 --- a/src/boot/boot.janet +++ b/src/boot/boot.janet @@ -1588,7 +1588,7 @@ on Windows is C:/Janet/Library." (or (process/opts "JANET_PATH") "")) -# Version of fexisst that works even with a reduced OS +# Version of fexists that works even with a reduced OS (if-let [has-stat (_env 'os/stat)] (let [stat (has-stat :value)] (defglobal "fexists" (fn fexists [path] (= :file (stat path :mode)))))