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 #5

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions src/bikleisli-io.ts
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ export function swap<F extends URIS2, G extends URIS2>(W: Comonad2<F>, M: Monad2
}

/**
* Perform right-to-left Kleisli arrows compotions.
* Perform right-to-left Kleisli arrows compositions.
* @param second Second computation to apply
* @param first First computation to apply
*/
Expand All @@ -314,7 +314,7 @@ export function composeK<F extends URIS2, G extends URIS2>(W: Comonad2<F>, M: Mo
}

/**
* Perform left-to-right Kleisli arrows compotions.
* Perform left-to-right Kleisli arrows compositions.
* @param first First computation to apply
* @param second Second computation to apply
*/
Expand Down Expand Up @@ -557,13 +557,13 @@ export function getInstancesFor<F extends URIS2, G extends URIS2>(
*/
swap: swap(W, M, T),
/**
* Perform right-to-left Kleisli arrows compotions.
* Perform right-to-left Kleisli arrows compositions.
* @param second Second computation to apply
* @param first First computation to apply
*/
composeK: composeK(W, M, T),
/**
* Perform left-to-right Kleisli arrows compotions.
* Perform left-to-right Kleisli arrows compositions.
* @param first First computation to apply
* @param second Second computation to apply
*/
Expand Down
8 changes: 4 additions & 4 deletions src/bikleisli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ export function swap<F extends URIS, G extends URIS>(W: Comonad1<F>, M: Monad1<G
}

/**
* Perform right-to-left Kleisli arrows compotions.
* Perform right-to-left Kleisli arrows compositions.
* @param second Second computation to apply
* @param first First computation to apply
*/
Expand All @@ -303,7 +303,7 @@ export function composeK<F extends URIS, G extends URIS>(W: Comonad1<F>, M: Mona
}

/**
* Perform left-to-right Kleisli arrows compotions.
* Perform left-to-right Kleisli arrows compositions.
* @param first First computation to apply
* @param second Second computation to apply
*/
Expand Down Expand Up @@ -537,13 +537,13 @@ export function getInstancesFor<F extends URIS, G extends URIS>(
*/
swap: swap(W, M, T),
/**
* Perform right-to-left Kleisli arrows compotions.
* Perform right-to-left Kleisli arrows compositions.
* @param second Second computation to apply
* @param first First computation to apply
*/
composeK: composeK(W, M, T),
/**
* Perform left-to-right Kleisli arrows compotions.
* Perform left-to-right Kleisli arrows compositions.
* @param first First computation to apply
* @param second Second computation to apply
*/
Expand Down
8 changes: 4 additions & 4 deletions src/kleisli-io.ts
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ export function swap<F extends URIS2>(M: MonadThrow2<F> & Bifunctor2<F>) {
}

/**
* Perform right-to-left Kleisli arrows compotions.
* Perform right-to-left Kleisli arrows compositions.
* @param second Second computation to apply
* @param first First computation to apply
*/
Expand All @@ -330,7 +330,7 @@ export function composeK<F extends URIS2>(M: MonadThrow2<F> & Bifunctor2<F>) {
}

/**
* Perform left-to-right Kleisli arrows compotions.
* Perform left-to-right Kleisli arrows compositions.
* @param first First computation to apply
* @param second Second computation to apply
*/
Expand Down Expand Up @@ -552,13 +552,13 @@ export function getInstancesFor<F extends URIS2>(M: MonadThrow2<F> & Bifunctor2<
*/
swap: swap(M),
/**
* Perform right-to-left Kleisli arrows compotions.
* Perform right-to-left Kleisli arrows compositions.
* @param second Second computation to apply
* @param first First computation to apply
*/
composeK: composeK(M),
/**
* Perform left-to-right Kleisli arrows compotions.
* Perform left-to-right Kleisli arrows compositions.
* @param first First computation to apply
* @param second Second computation to apply
*/
Expand Down
8 changes: 4 additions & 4 deletions src/kleisli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ export function swap<F extends URIS>(M: Monad1<F>) {
}

/**
* Perform right-to-left Kleisli arrows compotions.
* Perform right-to-left Kleisli arrows compositions.
* @param second Second computation to apply
* @param first First computation to apply
*/
Expand All @@ -292,7 +292,7 @@ export function composeK<F extends URIS>(M: Monad1<F>) {
}

/**
* Perform left-to-right Kleisli arrows compotions.
* Perform left-to-right Kleisli arrows compositions.
* @param first First computation to apply
* @param second Second computation to apply
*/
Expand Down Expand Up @@ -509,13 +509,13 @@ export function getInstancesFor<F extends URIS>(M: Monad1<F>) {
*/
swap: swap(M),
/**
* Perform right-to-left Kleisli arrows compotions.
* Perform right-to-left Kleisli arrows compositions.
* @param second Second computation to apply
* @param first First computation to apply
*/
composeK: composeK(M),
/**
* Perform left-to-right Kleisli arrows compotions.
* Perform left-to-right Kleisli arrows compositions.
* @param first First computation to apply
* @param second Second computation to apply
*/
Expand Down