Skip to content

Commit

Permalink
Regenerate docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rzeigler committed Aug 18, 2019
1 parent 464da0e commit 06dd6e4
Show file tree
Hide file tree
Showing 8 changed files with 100 additions and 120 deletions.
6 changes: 3 additions & 3 deletions docs/modules/console.ts.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Suspend console.error in an IO
**Signature**

```ts
export function error(msg: string): RIO<DefaultR, never, void> { ... }
export function error(msg?: any, ...more: any[]): RIO<DefaultR, never, void> { ... }
```

# log (function)
Expand All @@ -31,7 +31,7 @@ Suspend console.log in an IO
**Signature**

```ts
export function log(msg: string): RIO<DefaultR, never, void> { ... }
export function log(msg?: any, ...more: any[]): RIO<DefaultR, never, void> { ... }
```

# warn (function)
Expand All @@ -41,5 +41,5 @@ Suspend console.warn in an IO
**Signature**

```ts
export function warn(msg: string): RIO<DefaultR, never, void> { ... }
export function warn(msg?: any, ...more: any[]): RIO<DefaultR, never, void> { ... }
```
8 changes: 4 additions & 4 deletions docs/modules/exit.ts.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ parent: Modules

```ts
export interface Abort {
readonly _tag: 'abort'
readonly _tag: ExitTag.Abort
readonly abortedWith: unknown
}
```
Expand All @@ -38,7 +38,7 @@ export interface Abort {

```ts
export interface Done<A> {
readonly _tag: 'value'
readonly _tag: ExitTag.Done
readonly value: A
}
```
Expand All @@ -49,7 +49,7 @@ export interface Done<A> {

```ts
export interface Interrupt {
readonly _tag: 'interrupt'
readonly _tag: ExitTag.Interrupt
}
```

Expand All @@ -59,7 +59,7 @@ export interface Interrupt {

```ts
export interface Raise<E> {
readonly _tag: 'raise'
readonly _tag: ExitTag.Raise
readonly error: E
}
```
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/fiber.ts.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ export interface Fiber<E, A> {
**Signature**

```ts
export function makeFiber<E, A>(init: RIO<DefaultR, E, A>, runtime: Runtime, name?: string): RIO<DefaultR, never, Fiber<E, A>> { ... }
export function makeFiber<R, E, A>(init: RIO<R, E, A>, name?: string): RIO<R, never, Fiber<E, A>> { ... }
```
Loading

0 comments on commit 06dd6e4

Please sign in to comment.