Skip to content
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ For more complex use cases checkout the [website](https://qio.netlify.com).
| **@qio/stream** | Purely functional streaming capabilities built on top of QIO. | ![npm](https://img.shields.io/npm/v/@qio/stream.svg) |
| **@qio/console** | QIO based bindings to read and write to the terminal. | ![npm](https://img.shields.io/npm/v/@qio/console.svg) |
| **@qio/http** | QIO based binding to manage HTTP request/responses safely. | ![npm](https://img.shields.io/npm/v/@qio/http.svg) |
| **@qio/fs** | QIO based binding to manage HTTP request/responses safely. | ![npm](https://img.shields.io/npm/v/@qio/fs.svg) |
| **@qio/fs** | QIO based binding to interact with the file system safely. | ![npm](https://img.shields.io/npm/v/@qio/fs.svg) |
2 changes: 1 addition & 1 deletion packages/docs/core/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const greet = () => console.log('Hello World!') // void
```ts
import {QIO} from '@qio/core'

const greetIO = QIO.lift(greet) // QIO<never, void, unknown>
const greetIO = QIO.lift(greet) // QIO<void, never, unknown>
```

| Parameter | Value | |
Expand Down