aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--compiler/src/Files.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/src/Files.hs b/compiler/src/Files.hs
index 457f1da..ed082ba 100644
--- a/compiler/src/Files.hs
+++ b/compiler/src/Files.hs
@@ -81,7 +81,7 @@ fileName :: Path -> FileName
81fileName (Path (name:_)) = name 81fileName (Path (name:_)) = name
82 82
83subPaths :: Path -> [Path] 83subPaths :: Path -> [Path]
84subPaths (Path path) = map (Path . subsequences) path 84subPaths (Path path) = map Path $ subsequences path
85 85
86pathLength :: Path -> Int 86pathLength :: Path -> Int
87pathLength (Path path) = Data.List.length path 87pathLength (Path path) = Data.List.length path