From d2209582a0ef81c93342183cab3c12d69e79c5be Mon Sep 17 00:00:00 2001 From: Dominik Moritz Date: Wed, 13 Dec 2023 10:15:22 -0500 Subject: [PATCH] MINOR: [JS] Fix typo in unmemoize comment (#39084) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Authored-by: Dominik Moritz Signed-off-by: Raúl Cumplido --- js/src/vector.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/vector.ts b/js/src/vector.ts index 8c9a3da66c92c..7e1caa343562c 100644 --- a/js/src/vector.ts +++ b/js/src/vector.ts @@ -324,7 +324,7 @@ export class Vector { * Returns a vector without memoization of the {@link get} method. If this * vector is not memoized, this method returns this vector. * - * @returns A a vector without memoization. + * @returns A new vector without memoization. */ public unmemoize(): Vector { if (DataType.isDictionary(this.type) && this.isMemoized) {