From 52fa8aa129e5c369383a98d256ed78f8b99fdd40 Mon Sep 17 00:00:00 2001 From: "Iurii (Yury) Barlukov" Date: Fri, 28 Nov 2025 11:12:42 +0200 Subject: [PATCH] docs: Minor adjustment for `ResultAsync.andTee` description about execution order --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cfe6b7be..fd2fdbee 100644 --- a/README.md +++ b/README.md @@ -1284,7 +1284,8 @@ const resultMessage = await validateUser(user) Takes a `ResultAsync` and lets the original `ResultAsync` pass through regardless the result of the passed-in function. -This is a handy way to handle side effects whose failure or success should not affect your main logics such as logging. +This is a handy way to handle side effects whose failure or success should not affect your main logics such as logging. +The callback passed to `andTee` will be awaited **Signature:**