From 6f8aedfff238b5c8229bc3a902eb832b9a578719 Mon Sep 17 00:00:00 2001 From: Anastasios Chatzialexiou <16361161+tasxatzial@users.noreply.github.com> Date: Thu, 23 Oct 2025 00:42:26 +0300 Subject: [PATCH] gigasecond: Fix function template --- exercises/practice/gigasecond/src/gigasecond.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/practice/gigasecond/src/gigasecond.clj b/exercises/practice/gigasecond/src/gigasecond.clj index 8c87fc23..39cd9727 100644 --- a/exercises/practice/gigasecond/src/gigasecond.clj +++ b/exercises/practice/gigasecond/src/gigasecond.clj @@ -2,6 +2,6 @@ (defn from "Determines the date one gigasecond after the given date." - [date] + [year month day] ;; function body )