From d8257c457b3f78160fe8ce7a94b9351b36a0ab24 Mon Sep 17 00:00:00 2001 From: Anton Nesterov Date: Thu, 17 Oct 2024 05:45:32 +0200 Subject: [PATCH] readme --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5fd6a06..60cff77 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ const res = await grip( ); if (res.Fail()) { - handleErrorProperly(); + // handle error return; } @@ -38,7 +38,7 @@ const json = await grip( ); if (json.Of(SyntaxError)) { - handleJsonParseError(); + // handle parse error return; } @@ -53,7 +53,7 @@ const [res, fetchStatus] = await grip( fetch('https://api.example.com') ); if (fetchStatus.Fail()) { - handleErrorProperly(); + // handle error return; } @@ -61,7 +61,7 @@ const [json, parseStatus] = await grip( res.json() ); if (parseStatus.Of(SyntaxError)) { - handleJsonParseError(); + // handle parse error return; } ```