From 3655ed0316cf6c2db16649a6afd67a069d7ac0a4 Mon Sep 17 00:00:00 2001 From: Justin Camerer Date: Thu, 12 Jun 2025 11:31:29 -0400 Subject: [PATCH] Update README.md to fix an error in `orTee` example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a36c081..0ed09979 100644 --- a/README.md +++ b/README.md @@ -1357,7 +1357,7 @@ import { sendNotification } from 'imaginary-service' // Note logInsertError returns void on success but sendNotification takes User type. const resAsync = insertUser(user) - .orTee(logUser) + .orTee(logInsertError) .andThen(sendNotification) // Note there is no LogError in the types below