From 0373b174d3297e4dd753ca7ca81797eb46a0f68c Mon Sep 17 00:00:00 2001 From: Vijay Prakash P J Date: Tue, 16 Aug 2022 23:55:21 +0200 Subject: [PATCH 1/2] Fix: Update FS package description --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2388ef7d..bffcc02c 100644 --- a/README.md +++ b/README.md @@ -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) | From b450824c24983ca312bd5447065bfb58a31fde3b Mon Sep 17 00:00:00 2001 From: Vijay Prakash P J Date: Tue, 16 Aug 2022 23:56:31 +0200 Subject: [PATCH 2/2] Fix: Map correct return and error types --- packages/docs/core/usage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/core/usage.md b/packages/docs/core/usage.md index fe48f983..65fa287f 100644 --- a/packages/docs/core/usage.md +++ b/packages/docs/core/usage.md @@ -32,7 +32,7 @@ const greet = () => console.log('Hello World!') // void ```ts import {QIO} from '@qio/core' -const greetIO = QIO.lift(greet) // QIO +const greetIO = QIO.lift(greet) // QIO ``` | Parameter | Value | |