Skip to content

Commit

Permalink
Fix spacing in docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhoyt committed Feb 28, 2019
1 parent a43230b commit aca524a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/main/mdoc/docs/02-A-First-Example.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ implicit val traverse: Traverse[ArithmeticF] = new Traverse[ArithmeticF] {
(f: A => G [B])
(implicit G: Applicative[G]) =
fa match {
case NumberF(v) => G.point(NumberF(v))
case NumberF(v) => G.point(NumberF(v))
case AddF(a, b) => (f(a) f(b))(AddF(_, _))
case SubtractF(a, b) => (f(a) f(b))(SubtractF(_, _))
case MultiplyF(a, b) => (f(a) f(b))(MultiplyF(_, _))
Expand Down

0 comments on commit aca524a

Please sign in to comment.