From 814346569fa38a9d072c84b42c7e48f6923ae74d Mon Sep 17 00:00:00 2001 From: Kevin Hill <107003416+khill-fbmc@users.noreply.github.com> Date: Thu, 14 Aug 2025 04:18:55 -0700 Subject: [PATCH] Update README.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I found an `r` that was dropped 😄 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0ed09979..cfe6b7be 100644 --- a/README.md +++ b/README.md @@ -675,7 +675,7 @@ const resAsync = parseUserInput(userInput) .andThrough(validateUser) .asyncAndThen(insertUser) -resAsync.then((res: Result) => { +resAsync.then((res: Result) => { if(res.isErr()){ console.log("Oops, at least one step failed", res.error) }