From 5515fb740e865ef9f9a98a2fff98899f76ff5dbc Mon Sep 17 00:00:00 2001 From: tpoisseau <22891227+tpoisseau@users.noreply.github.com> Date: Thu, 25 Sep 2025 16:09:25 +0200 Subject: [PATCH] chore: typo in getting-started.mdx fix wrong url in example --- docs/getting-started.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started.mdx b/docs/getting-started.mdx index c5ca82b..b50bf2f 100644 --- a/docs/getting-started.mdx +++ b/docs/getting-started.mdx @@ -92,7 +92,7 @@ To load an image via a browser, you may use the `fetchURL` function: ```ts import { fetchURL } from 'image-js'; -let image = await fetchURL('https:://example.com/image.jpg'); +let image = await fetchURL('https://example.com/image.jpg'); image = image.grey(); ```