From 411b8ae0a3c0646b8a88313e5786a904a36510b3 Mon Sep 17 00:00:00 2001 From: iiio2 Date: Tue, 8 Oct 2024 00:54:13 +0600 Subject: [PATCH] chore(examples): fix typos --- examples/proxy.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/proxy.mjs b/examples/proxy.mjs index 8f0e33aa..516f846d 100644 --- a/examples/proxy.mjs +++ b/examples/proxy.mjs @@ -1,7 +1,7 @@ import { Agent } from "undici"; import { ofetch } from "ofetch"; -// Note: This make fetch unsecure to MITM attacks. USE AT YOUW OWN RISK! +// Note: This makes fetch unsecure to MITM attacks. USE AT YOUR OWN RISK! const unsecureAgent = new Agent({ connect: { rejectUnauthorized: false } }); const unsecureFetch = ofetch.create({ dispatcher: unsecureAgent }); const data = await unsecureFetch("https://www.squid-cache.org/");