Skip to content

Commit

Permalink
remove dot
Browse files Browse the repository at this point in the history
  • Loading branch information
ENvironmentSet committed Aug 25, 2023
1 parent bf01f8f commit 1aab595
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/monad.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Effectful } from './core';

/**
* Applies function to result of a computation.
* Applies function to result of a computation
*
* @beta
*
Expand Down Expand Up @@ -38,7 +38,7 @@ export function* of<T>(value: T): Effectful<never, T> {
}

/**
* Applies function inside effectful computation to result of another computation.
* Applies function inside effectful computation to result of another computation
*
* @beta
*
Expand All @@ -47,12 +47,12 @@ export function* of<T>(value: T): Effectful<never, T> {
*/
export function ap<E, A, B>(wrappedF: Effectful<E, (a: A) => B>, computation: Effectful<E, A>): Effectful<E, B>
/**
* Unwrap function inside effectful computation as function for effectful computations.
* Unwrap function inside effectful computation as function for effectful computations
*
* @beta
*
* @param wrappedF - A function to unwrap
* @returns an unwrapped function for effectful computations.
* @returns an unwrapped function for effectful computations
*/
export function ap<E1, A, B>(wrappedF: Effectful<E1, (a: A) => B>)
: <E2>(computation: Effectful<E2, A>) => Effectful<E1 | E2, B>
Expand Down

0 comments on commit 1aab595

Please sign in to comment.