From 8dbd9bdf2cebe8ba90de391e1589e2694e5b3cdf Mon Sep 17 00:00:00 2001 From: iiio2 Date: Thu, 30 Jan 2025 19:29:11 +0600 Subject: [PATCH] docs: tiny typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c52e2a30..3b773ebb 100644 --- a/README.md +++ b/README.md @@ -349,7 +349,7 @@ const data = await ofetch("https://icanhazip.com"); import { ProxyAgent } from "undici"; import { ofetch } from "ofetch"; -// Note: This makes fetch unsecure against MITM attacks. USE AT YOUW OWN RISK! +// Note: This makes fetch unsecure against MITM attacks. USE AT YOUR OWN RISK! const unsecureProxyAgent = new ProxyAgent({ requestTls: { rejectUnauthorized: false } }); const unsecureFetch = ofetch.create({ dispatcher: unsecureProxyAgent });