From 0f7607e1f393afea5c16a69328928cd6c64b8a3b Mon Sep 17 00:00:00 2001 From: Vasyl Dudla <61563468+Vasya564@users.noreply.github.com> Date: Thu, 19 Feb 2026 00:48:15 +0200 Subject: [PATCH] Correct comment text in applyCustomJoin function Fix typo in comment for custom join method. --- src/arrayMethodJoin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arrayMethodJoin.js b/src/arrayMethodJoin.js index 3a62201c..2c65235b 100644 --- a/src/arrayMethodJoin.js +++ b/src/arrayMethodJoin.js @@ -5,7 +5,7 @@ */ function applyCustomJoin() { [].__proto__.join2 = function(separator) { - // write code here + // write code he }; }