Skip to content

Commit

Permalink
docs: Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom committed Aug 15, 2018
1 parent 3229cc1 commit add34c9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/clock/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions exercises/leap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit add34c9

Please sign in to comment.