From 63894ba4a97505cf4eb4c7e894e3445139a0f5a5 Mon Sep 17 00:00:00 2001 From: Inaiat Moraes Date: Mon, 8 Apr 2024 17:23:21 -0300 Subject: [PATCH] chore: update readme --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ac1a7fc..cdd7d24 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,9 @@ This package contains a `Result` type that represents either success (`Ok`) or f For asynchronous tasks, `resultar` offers a `ResultAsync` class which wraps a `Promise>` and gives you the same level of expressivity and control as a regular `Result`. -`ResultAsync` is `thenable` meaning it **behaves exactly like a native `Promise`** ... except you have access to the same methods that `Result` provides without having to `await` or `.then` the promise! Check out [the wiki](https://github.com/inaiat/resultar/wiki) for examples and best practices. +`ResultAsync` is `thenable` meaning it **behaves exactly like a native `Promise`** ... except you have access to the same methods that `Result` provides without having to `await` or `.then` the promise! + +### Check out [the wiki](https://github.com/inaiat/resultar/wiki) for examples and best practices.