Skip to content

Commit 17c4c39

Browse files
authored
Fix: CONTRIBUTING.md links (#49)
Uppercase `directory.md` to `DIRECTORY.md`
1 parent 7beca28 commit 17c4c39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Being one of our contributors, you agree and confirm that:
3838

3939
## Contribution guidelines
4040

41-
We appreciate any contribution, from fixing a grammar mistake in a comment to implementing complex algorithms. Please check the [directory](directory.md) and [issues](https://github.com/TheAlgorithms/Nim/issues/) for an existing (or declined) implementation of your algorithm and relevant discussions.
41+
We appreciate any contribution, from fixing a grammar mistake in a comment to implementing complex algorithms. Please check the [directory](DIRECTORY.md) and [issues](https://github.com/TheAlgorithms/Nim/issues/) for an existing (or declined) implementation of your algorithm and relevant discussions.
4242

4343
**New implementations** are welcome! This includes: new solutions for a problem, different representations for a data structure, algorithm design with a different complexity or features.
4444

@@ -49,7 +49,7 @@ We appreciate any contribution, from fixing a grammar mistake in a comment to im
4949
### Implementation requirements
5050

5151
- The unit of an implementation we expect is a [**Nim module**](https://nim-lang.org/docs/manual.html#modules). Although the main goals of this repository are educational, the module form mirrors a real world scenario and makes it easy to use the code from this repository in other projects.
52-
- First line must contain the canonical title of the module prefixed by double hashes (`## Title Of The Module`). This title is used in this repository's automation for populating the [Directory](directory.md).
52+
- First line must contain the canonical title of the module prefixed by double hashes (`## Title Of The Module`). This title is used in this repository's automation for populating the [Directory](DIRECTORY.md).
5353
- The module should be thoroughly documented with doc comments. Follow the [Nim documentation style](https://nim-lang.org/docs/docstyle.html).
5454
- The file begins with the module-level documentation with the general description and explanation of the algorithm/data-structure. If possible, please include:
5555
* Any restrictions of the implementation and any constraints for the input data.

0 commit comments

Comments
 (0)