From add34c98af65e32a3cc77dfd686c75414c800fe3 Mon Sep 17 00:00:00 2001 From: Erik Schierboom Date: Wed, 15 Aug 2018 17:55:57 +0200 Subject: [PATCH] docs: Update README --- exercises/clock/README.md | 2 +- exercises/leap/README.md | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/exercises/clock/README.md b/exercises/clock/README.md index a4df56031c..0c1efc2e6e 100644 --- a/exercises/clock/README.md +++ b/exercises/clock/README.md @@ -9,7 +9,7 @@ Two clocks that represent the same time should be equal to each other. ## Hints This exercise requires you to implement a type-specific method for determining equality of instances. For more information, see [this page] -(https://docs.microsoft.com/en-us/dotnet/core/api/System.IEquatable-1) . +(https://docs.microsoft.com/en-us/dotnet/core/api/System.IEquatable-1). ## Running the tests diff --git a/exercises/leap/README.md b/exercises/leap/README.md index d37e58fc38..1bb9fee178 100644 --- a/exercises/leap/README.md +++ b/exercises/leap/README.md @@ -26,6 +26,11 @@ phenomenon, go watch [this youtube video][video]. [video]: http://www.youtube.com/watch?v=xX96xng7sAE +## Notes + +The DateTime class in C# provides a built-in [IsLeapYear](https://msdn.microsoft.com/en-us/library/system.datetime.isleapyear(v=vs.110).aspx) method +which you should pretend doesn't exist for the purposes of implementing this exercise. + ## Running the tests To run the tests, run the command `dotnet test` from within the exercise directory.