From 7c20526643d93f37236228405b4999875d4ac955 Mon Sep 17 00:00:00 2001 From: Rahul Rao <63695122+rahulrao0209@users.noreply.github.com> Date: Sun, 18 May 2025 15:54:35 +0530 Subject: [PATCH] Fix minor typo. --- 1-js/04-object-basics/02-object-copy/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/04-object-basics/02-object-copy/article.md b/1-js/04-object-basics/02-object-copy/article.md index e80f748ab..60e430d56 100644 --- a/1-js/04-object-basics/02-object-copy/article.md +++ b/1-js/04-object-basics/02-object-copy/article.md @@ -285,7 +285,7 @@ alert(clone.sizes.width); // 50, not related The `structuredClone` method can clone most data types, such as objects, arrays, primitive values. -It also supports circular references, when an object property references the object itself (directly or via a chain or references). +It also supports circular references, when an object property references the object itself (directly or via a chain of references). For instance: