Skip to content

Commit

Permalink
Fix Spooky scaladoc typo (#2156)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcranky authored and johnynek committed Jan 18, 2018
1 parent 76c02fe commit 1d1b17c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/test/scala/cats/tests/Spooky.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package tests
* Class for spooky side-effects and action-at-a-distance.
*
* It is basically a mutable counter that can be used to measure how
* many times an otherwise pure function is being evaluted.
* many times an otherwise pure function is being evaluated.
*/
class Spooky(var counter: Int = 0) {
def increment(): Unit = counter += 1
Expand Down

0 comments on commit 1d1b17c

Please sign in to comment.