Skip to content

Commit

Permalink
MINOR: [JS] Fix typo in unmemoize comment (#39084)
Browse files Browse the repository at this point in the history
Authored-by: Dominik Moritz <[email protected]>
Signed-off-by: Raúl Cumplido <[email protected]>
  • Loading branch information
domoritz authored Dec 13, 2023
1 parent 4aa9f60 commit d220958
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/src/vector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ export class Vector<T extends DataType = any> {
* 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<T> {
if (DataType.isDictionary(this.type) && this.isMemoized) {
Expand Down

0 comments on commit d220958

Please sign in to comment.