Skip to content

Commit

Permalink
Fix all broken links in list of Typeclasses
Browse files Browse the repository at this point in the history
  • Loading branch information
pakoito committed Apr 7, 2018
1 parent 9440e99 commit 843179b
Show file tree
Hide file tree
Showing 7 changed files with 61 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
layout: docs
title: Birecursive
permalink: /docs/recursion/birecursive/
---

## Birecursive

TODO. Meanwhile you can find a short description in the [intro to typeclasses]({{ '/docs/typeclasses/intro/' | relative_url }}).
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
layout: docs
title: Corecursive
permalink: /docs/recursion/corecursive/
---

## Corecursive

TODO. Meanwhile you can find a short description in the [intro to typeclasses]({{ '/docs/typeclasses/intro/' | relative_url }}).
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
layout: docs
title: Recursive
permalink: /docs/recursion/recursive/
---

## Recursive

TODO. Meanwhile you can find a short description in the [intro to typeclasses]({{ '/docs/typeclasses/intro/' | relative_url }}).
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
layout: docs
title: Alternative
permalink: /docs/typeclasses/alternative/
---

## Alternative

TODO. Meanwhile you can find a short description in the [intro to typeclasses]({{ '/docs/typeclasses/intro/' | relative_url }}).
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
layout: docs
title: Inject
permalink: /docs/typeclasses/inject/
---

## Inject

TODO. Meanwhile you can find a short description in the [intro to typeclasses]({{ '/docs/typeclasses/intro/' | relative_url }}).
14 changes: 7 additions & 7 deletions modules/docs/arrow-docs/docs/docs/typeclasses/intro/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,18 +114,18 @@ The Monad Template Library module gives more specialized version of existing typ

#### Optics

- [`At`]({{ '/docs/typeclasses/at/' | relative_url }}) - provides a [`Lens`]({{ '/docs/optics/lens/' | relative_url }}) for a structure with an indexable focus.
- [`At`]({{ '/docs/optics/at/' | relative_url }}) - provides a [`Lens`]({{ '/docs/optics/lens/' | relative_url }}) for a structure with an indexable focus.

- [`FilterIndex`]({{ '/docs/typeclasses/filterindex/' | relative_url }}) - provides a [`Traversal`]({{ '/docs/optics/traversal/' | relative_url }}) for a structure with indexable foci that satisfy a predicate.
- [`FilterIndex`]({{ '/docs/optics/filterindex/' | relative_url }}) - provides a [`Traversal`]({{ '/docs/optics/traversal/' | relative_url }}) for a structure with indexable foci that satisfy a predicate.

- [`Index`]({{ '/docs/typeclasses/index/' | relative_url }}) - provides an [`Optional`]({{ '/docs/optics/optional/' | relative_url }}) for a structure with an indexable optional focus.
- [`Index`]({{ '/docs/optics/index/' | relative_url }}) - provides an [`Optional`]({{ '/docs/optics/optional/' | relative_url }}) for a structure with an indexable optional focus.

- [`Each`]({{ '/docs/typeclasses/each/' | relative_url }}) - provides a [`Traversal`]({{ '/docs/optics/traversal/' | relative_url }}).
- [`Each`]({{ '/docs/optics/each/' | relative_url }}) - provides a [`Traversal`]({{ '/docs/optics/traversal/' | relative_url }}).

#### Recursion

- [`Corecursive`]({{ '/docs/typeclasses/corecursive/' | relative_url }}) - traverses a structure forwards from the starting case
- [`Corecursive`]({{ '/docs/recursion/corecursive/' | relative_url }}) - traverses a structure forwards from the starting case

- [`Recursive`]({{ '/docs/typeclasses/recursive/' | relative_url }}) - traverses a structure backwards from the base case
- [`Recursive`]({{ '/docs/recursion/recursive/' | relative_url }}) - traverses a structure backwards from the base case

- [`Birecursive`]({{ '/docs/typeclasses/birecursive/' | relative_url }}) - it is both recursive and corecursive
- [`Birecursive`]({{ '/docs/recursion/birecursive/' | relative_url }}) - it is both recursive and corecursive
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
layout: docs
title: Reducible
permalink: /docs/typeclasses/reducible/
---

## Reducible

TODO. Meanwhile you can find a short description in the [intro to typeclasses]({{ '/docs/typeclasses/intro/' | relative_url }}).

0 comments on commit 843179b

Please sign in to comment.