From e39834ceb65b651d86b77cc1796610cc254f1c53 Mon Sep 17 00:00:00 2001 From: harris-miller Date: Mon, 15 Jul 2024 19:22:13 -0600 Subject: [PATCH] one more doc comment update --- source/update.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/update.js b/source/update.js index cdafd3d5e..d85ab39b2 100644 --- a/source/update.js +++ b/source/update.js @@ -7,7 +7,7 @@ import always from './always.js'; * Returns a new copy of the array with the element at the provided index * replaced with the given value. * - * When `idx < 0 || idx >= list.length`, the original list is returned. + * When `idx < -list.length || idx >= list.length`, the original list is returned. * * @func * @memberOf R