From 46f5001318c47568527540e40c688d16277e3865 Mon Sep 17 00:00:00 2001 From: Isaac Good Date: Mon, 25 May 2026 14:20:15 -0700 Subject: [PATCH 1/2] Format all `instructions.append.md` to start with an H1 (required but ignored) and H2 --- exercises/practice/gigasecond/.docs/instructions.append.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/exercises/practice/gigasecond/.docs/instructions.append.md b/exercises/practice/gigasecond/.docs/instructions.append.md index 1f63eeb9..446e33ee 100644 --- a/exercises/practice/gigasecond/.docs/instructions.append.md +++ b/exercises/practice/gigasecond/.docs/instructions.append.md @@ -1,3 +1,5 @@ # Instructions append +## Implementation + The tests for this exercise rely on the third-party `datetime` library instead of the `Date` class from the standard library. In our testing, the standard Date class did not support [daylight savings time](https://en.wikipedia.org/wiki/Daylight_saving_time) which led to issues with multiple test cases. Please review [the official documentation](https://lib.haxe.org/p/datetime/) for the `datetime` library for any questions. From 0b0117e31402333a35be04cfc84ef4610d4ecfee Mon Sep 17 00:00:00 2001 From: Isaac Good Date: Tue, 26 May 2026 22:17:05 -0700 Subject: [PATCH 2/2] Update the header to "Track specific instructions" --- exercises/practice/gigasecond/.docs/instructions.append.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/practice/gigasecond/.docs/instructions.append.md b/exercises/practice/gigasecond/.docs/instructions.append.md index 446e33ee..aabba82c 100644 --- a/exercises/practice/gigasecond/.docs/instructions.append.md +++ b/exercises/practice/gigasecond/.docs/instructions.append.md @@ -1,5 +1,5 @@ # Instructions append -## Implementation +## Track specific instructions The tests for this exercise rely on the third-party `datetime` library instead of the `Date` class from the standard library. In our testing, the standard Date class did not support [daylight savings time](https://en.wikipedia.org/wiki/Daylight_saving_time) which led to issues with multiple test cases. Please review [the official documentation](https://lib.haxe.org/p/datetime/) for the `datetime` library for any questions.