From f3f23fc868ee6c6634e4083f99bccde49ce663ee Mon Sep 17 00:00:00 2001 From: Anton Vakhrushev Date: Sun, 10 Nov 2019 21:57:20 +0300 Subject: [PATCH] Fix file names --- src/dayoff/storage.cr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dayoff/storage.cr b/src/dayoff/storage.cr index 3b138de..df11926 100644 --- a/src/dayoff/storage.cr +++ b/src/dayoff/storage.cr @@ -52,7 +52,7 @@ module Dayoff end end - st_file_def(planned_dates, PlannedDate, "planed-dates.json") - st_file_def(work_records, WorkRecord, "work_records.json") + st_file_def(planned_dates, PlannedDate, "planned-dates.json") + st_file_def(work_records, WorkRecord, "work-records.json") end end