From 59f1018594fb54fcb43cba153a6e3d9287fd5f0c Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Sun, 28 May 2023 23:04:28 +0300 Subject: [PATCH] Fix broken link Fixes #1946 --- snippets/js/s/iterable-to-array.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/js/s/iterable-to-array.md b/snippets/js/s/iterable-to-array.md index 48799ae25..b7b4fceec 100644 --- a/snippets/js/s/iterable-to-array.md +++ b/snippets/js/s/iterable-to-array.md @@ -44,4 +44,4 @@ const nodes = document.childNodes; const nodeArray = [...nodes]; // [ , html ] ``` -Note that the above example is the basis for the [nodeListToArray snippet](js/s/node-list-to-array). +Note that the above example is the basis for the [nodeListToArray snippet](/js/s/node-list-to-array).