Skip to content

Commit

Permalink
[v3] Convert relative v3 links to absolute links
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom authored and iHiD committed Feb 5, 2021
1 parent 90e03bf commit c6e3205
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions concepts/lists/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ Clojure's special treatment of lists is why we cannot create a list literal dire
Unlike some modern languages, Clojure lists are _heterogenous_, meaning they can contain multiple types of item internally. E.g. `'(2 "a" "b" 3)`
Unlike other other Lisps, an empty list in Clojure in truthy and is not equivalent to `nil` or `false`.

[type-list]: ../../../../reference/types/list.md
[type-collection]: ../../../../reference/types/collection.md
[type-list]: https://github.com/exercism/v3/blob/main/reference/types/list.md
[type-collection]: https://github.com/exercism/v3/blob/main/reference/types/collection.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ Clojure's special treatment of lists is why we cannot create a list literal dire
Unlike some modern languages, Clojure lists are _heterogenous_, meaning they can contain multiple types of item internally. E.g. `'(2 "a" "b" 3)`
Unlike other other Lisps, an empty list in Clojure in truthy and is not equivalent to `nil` or `false`.

[type-list]: ../../../../../../reference/types/list.md
[type-collection]: ../../../../../../reference/types/collection.md
[type-list]: https://github.com/exercism/v3/blob/main/reference/types/list.md
[type-collection]: https://github.com/exercism/v3/blob/main/reference/types/collection.md
8 changes: 4 additions & 4 deletions reference/implementing-a-concept-exercise.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ If you have any questions regarding implementing the exercise, please post them

//To-Add-More

[how-to-implement-a-concept-exercise]: ../../../docs/maintainers/generic-how-to-implement-a-concept-exercise.md
[docs-concept-exercises]: ../../../docs/concept-exercises.md
[docs-rationale-for-v3]: ../../../docs/rationale-for-v3.md
[docs-features-of-v3]: ../../../docs/features-of-v3.md
[how-to-implement-a-concept-exercise]: https://github.com/exercism/v3/blob/main/docs/maintainers/generic-how-to-implement-a-concept-exercise.md
[docs-concept-exercises]: https://github.com/exercism/v3/blob/main/docs/concept-exercises.md
[docs-rationale-for-v3]: https://github.com/exercism/v3/blob/main/docs/rationale-for-v3.md
[docs-features-of-v3]: https://github.com/exercism/v3/blob/main/docs/features-of-v3.md
[anatomy-of-a-concept-exercise]: https://www.youtube.com/watch?v=gkbBqd7hPrA

0 comments on commit c6e3205

Please sign in to comment.