Skip to content

Commit

Permalink
Merge pull request #1441 from typelevel/kailuowang-patch-1
Browse files Browse the repository at this point in the history
Fixes #1438 by replacing quoted entry name
  • Loading branch information
non authored Oct 27, 2016
2 parents 25e9628 + 3662310 commit 0e76f70
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions docs/src/main/tut/typeclasses/typeclasses.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Typeclass hierarchy for types parameterized on a type `F[_]`

![Typeclass hierarchy](http://g.gravizo.com/g?
digraph G {
aize ="4,4";
size ="6,6";
edge [dir=back]
node [shape=box,style="rounded"]
Functor [group=g2]
Expand All @@ -105,9 +105,8 @@ Typeclass hierarchy for types parameterized on a type `F[_]`
Alternative [group=g1]
MonadFilter [group=g1]
MonadCombine [group=g1]
"functor.Invariant" [group=g4]
"functor.Contravariant" [group=g4]
"functor.Invariant" [group=g4]
Invariant [group=g4]
Contravariant [group=g4]
CoflatMap [group=g5]
Comonad [group=g5]
Bimonad [group=g5]
Expand All @@ -116,10 +115,10 @@ Typeclass hierarchy for types parameterized on a type `F[_]`
MonoidK -> Alternative
Functor -> CoflatMap
subgraph cluster_s3{
"functor.Invariant" -> "functor.Contravariant"
graph[style=dotted]
Invariant -> Contravariant
graph[style=dotted,label="functor"]
}
"functor.Invariant" -> Functor
Invariant -> Functor
subgraph cluster_s2{
SemigroupK -> MonoidK
graph[style=dotted]
Expand Down

0 comments on commit 0e76f70

Please sign in to comment.