Skip to content

Commit

Permalink
Fix typo (#1871)
Browse files Browse the repository at this point in the history
  • Loading branch information
LukaJCB authored and kailuowang committed Aug 28, 2017
1 parent 2305ca6 commit f937733
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/scala/cats/Traverse.scala
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ import simulacrum.typeclass
* structure F when calling the function.
*
* This performs the traversal in a single pass but requires that
* effect G is monadic. An applicative traveral can be performed in
* effect G is monadic. An applicative traversal can be performed in
* two passes using [[zipWithIndex]] followed by [[traverse]].
*/
def traverseWithIndexM[G[_], A, B](fa: F[A])(f: (A, Int) => G[B])(implicit G: Monad[G]): G[F[B]] =
Expand Down

0 comments on commit f937733

Please sign in to comment.