Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos detected by github.com/client9/misspell #2378

Merged
merged 1 commit into from
Aug 10, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,7 @@ Additions:
* [#1319](https://github.com/typelevel/cats/pull/1347): add missing `BigDecimal` instances.
* [#1324](https://github.com/typelevel/cats/pull/1324): add missing function and `BitSet` instances.

Note that 0.7.2 was preceeded by a botched 0.7.1. release. Please
Note that 0.7.2 was preceded by a botched 0.7.1. release. Please
avoid using this version of Cats -- it has major incompatibilities
with 0.7.0 and is not documented here.

Expand Down
2 changes: 1 addition & 1 deletion PROCESS.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ to be updated:
You can get a list of changes between release tags `v0.1.2` and
`v0.2.0` via `git log v0.1.2..v0.2.0`. Scanning this list of commit
messages is a good way to get a summary of what happened, although it
does not account for conversations that occured on Github.
does not account for conversations that occurred on Github.

Once the relevant documentation changes have been committed, new
[release notes](https://github.com/typelevel/cats/releases) should be
Expand Down
4 changes: 2 additions & 2 deletions core/src/main/scala/cats/Reducible.scala
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ import simulacrum.typeclass
reduceLeftM(fa)(f)((b, a) => G.map(f(a))(B.combine(b, _)))

/**
* Overriden from [[Foldable]] for efficiency.
* Overridden from [[Foldable]] for efficiency.
*/
override def reduceLeftToOption[A, B](fa: F[A])(f: A => B)(g: (B, A) => B): Option[B] =
Some(reduceLeftTo(fa)(f)(g))
Expand All @@ -104,7 +104,7 @@ import simulacrum.typeclass
def reduceRightTo[A, B](fa: F[A])(f: A => B)(g: (A, Eval[B]) => Eval[B]): Eval[B]

/**
* Overriden from [[Foldable]] for efficiency.
* Overridden from [[Foldable]] for efficiency.
*/
override def reduceRightToOption[A, B](fa: F[A])(f: A => B)(g: (A, Eval[B]) => Eval[B]): Eval[Option[B]] =
reduceRightTo(fa)(f)(g).map(Some(_))
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/scala/cats/UnorderedFoldable.scala
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ import cats.instances.long._
/**
* The size of this UnorderedFoldable.
*
* This is overriden in structures that have more efficient size implementations
* This is overridden in structures that have more efficient size implementations
* (e.g. Vector, Set, Map).
*
* Note: will not terminate for infinite-sized collections.
Expand Down
4 changes: 2 additions & 2 deletions core/src/main/scala/cats/data/AndThen.scala
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,8 @@ object AndThen extends AndThenInstances0 {
* 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 "<".
* The default is `128`, from which we subtract one as an optimization,
* a "!=" comparison being slightly more efficient than a "<".
*
* This value was reached by taking into account the default stack
* size as set on 32 bits or 64 bits, Linux or Windows systems,
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/scala/cats/evidence/package.scala
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ package object evidence {

/**
* The property that a value of type A can be used in a context
* expecting a B if A <~< B is refered to as the "Liskov
* expecting a B if A <~< B is referred to as the "Liskov
* Substitution Principal", which is named for Barbara Liskov:
* https://en.wikipedia.org/wiki/Barbara_Liskov
*/
Expand Down
2 changes: 1 addition & 1 deletion docs/src/main/tut/datatypes/eithert.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ val error: EitherT[Option, String, Int] = EitherT.leftT("Not a number")

## From `F[A]` or `F[B]` to `EitherT[F, A, B]`

Similary, use `EitherT.left` and `EitherT.right` to convert an `F[A]` or an `F[B]`
Similarly, use `EitherT.left` and `EitherT.right` to convert an `F[A]` or an `F[B]`
into an `EitherT`. It is also possible to use `EitherT.liftF` as an alias for
`EitherT.right`.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ object SerializableLaws {
// compile time, so we rely on scalac to prune away the "other"
// branch. Thus, when scala.js look at this method it won't "see"
// the branch which was removed, and will avoid an error trying to
// suport java.io.*.
// support java.io.*.
//
// This ends up being a lot nicer than having to split the entire
// laws project.
Expand Down
4 changes: 2 additions & 2 deletions tests/src/test/scala/cats/tests/EvalSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class EvalSuite extends CatsSuite {
*
* It will then proceed to call `value` 0-or-more times, verifying
* that the result is equal to `value`, and also that the
* appropriate number of evaluations are occuring using the
* appropriate number of evaluations are occurring using the
* `numCalls` function.
*
* In other words, each invocation of run says:
Expand Down Expand Up @@ -148,7 +148,7 @@ class EvalSuite extends CatsSuite {
}
}

// the following machinery is all to faciliate testing deeply-nested
// the following machinery is all to facilitate testing deeply-nested
// eval values for stack safety. the idea is that we want to
// randomly generate deep chains of eval operations.
//
Expand Down