Skip to content

Commit

Permalink
fixing trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
kailuowang authored Mar 14, 2018
1 parent f0db124 commit 439b785
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/src/main/scala/cats/data/AndThen.scala
Original file line number Diff line number Diff line change
Expand Up @@ -110,14 +110,14 @@ private[cats] object AndThen {
private final case class Concat[-A, E, +B](left: AndThen[A, E], right: AndThen[E, B])
extends AndThen[A, B]

/**
* Establishes the maximum stack depth when fusing `andThen` or
/**
* Establishes the maximum stack depth when fusing `andThen` or
* `compose` calls.
*
* The default is `128`, from which we substract one as an optimization,
* a "!=" comparisson being slightly more efficient than a "<".
*
* This value was reached by taking into account the default stack
* This value was reached by taking into account the default stack
* size as set on 32 bits or 64 bits, Linux or Windows systems,
* being enough to notice performance gains, but not big enough
* to be in danger of triggering a stack-overflow error.
Expand Down

0 comments on commit 439b785

Please sign in to comment.