From 9976734b634d69288afedc1c462675225012b69b Mon Sep 17 00:00:00 2001 From: Anton Nesterov <48190253+nesterow@users.noreply.github.com> Date: Sun, 1 Dec 2024 16:10:01 +0100 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a4999bf..d3ced8a 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ It makes the control flow similar to that of Golang, but doesn't force you to ma > Grip doesn't force you to write code in a specific style or avoid using throw. It is just a helper that unwraps try-catch. -Instead of returning a nullish error, Grip always returns a consistent status interface: +Instead of returning a nullish error, Grip always returns a consistent result interface: ```javascript const [value, status] = grip(callable) // or {value, status}