diff options
Diffstat (limited to 'lib/helpers/file_helpers.ml')
-rw-r--r-- | lib/helpers/file_helpers.ml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/helpers/file_helpers.ml b/lib/helpers/file_helpers.ml index 892d807..a1b5372 100644 --- a/lib/helpers/file_helpers.ml +++ b/lib/helpers/file_helpers.ml @@ -3,5 +3,4 @@ let list_files dir = Array.to_list (Sys.readdir dir) |> List.map (fun file -> Printf.sprintf "<li>%s</li>" file) |> String.concat "" - with _ -> - "<li>Error: Unable to read directory</li>" + with _ -> "<li>Error: Unable to read directory</li>" |