From 31e72a58037aa73a39090425672db2cfbde192d2 Mon Sep 17 00:00:00 2001 From: Drew Harris Date: Fri, 30 May 2025 21:44:33 -0500 Subject: [PATCH] docs: fix typo in readme example code --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a36c081..2f95a3c8 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) }