From 2b87e66f11fa293d1013068b7e14239782460124 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 1 Jun 2026 13:24:27 +0000 Subject: [PATCH] docs: align `package.json` descriptions with imperative-mood convention Propagates fix from fa63e96 ("docs: fix descriptions") to sibling packages whose `package.json` description field still uses the third-person singular form, mismatching both the package's own README intro and the dominant stdlib convention (700+ "Compute ", 467 "Test ", 490 "Return " imperative-mood descriptions; only three third-person outliers remain after this commit). --- lib/node_modules/@stdlib/blas/base/cgemv/package.json | 2 +- lib/node_modules/@stdlib/ndarray/with/package.json | 2 +- .../@stdlib/string/base/distances/levenshtein/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/base/cgemv/package.json b/lib/node_modules/@stdlib/blas/base/cgemv/package.json index eb0cb2754c5f..4d05027acf83 100644 --- a/lib/node_modules/@stdlib/blas/base/cgemv/package.json +++ b/lib/node_modules/@stdlib/blas/base/cgemv/package.json @@ -1,7 +1,7 @@ { "name": "@stdlib/blas/base/cgemv", "version": "0.0.0", - "description": "Performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` or `y = α*A^H*x + β*y`.", + "description": "Perform one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` or `y = α*A^H*x + β*y`.", "license": "Apache-2.0", "author": { "name": "The Stdlib Authors", diff --git a/lib/node_modules/@stdlib/ndarray/with/package.json b/lib/node_modules/@stdlib/ndarray/with/package.json index 30ea9f2bab32..721d2d806a68 100644 --- a/lib/node_modules/@stdlib/ndarray/with/package.json +++ b/lib/node_modules/@stdlib/ndarray/with/package.json @@ -1,7 +1,7 @@ { "name": "@stdlib/ndarray/with", "version": "0.0.0", - "description": "Returns a new ndarray with the element at a specified index replaced by a provided value.", + "description": "Return a new ndarray with the element at a specified index replaced by a provided value.", "license": "Apache-2.0", "author": { "name": "The Stdlib Authors", diff --git a/lib/node_modules/@stdlib/string/base/distances/levenshtein/package.json b/lib/node_modules/@stdlib/string/base/distances/levenshtein/package.json index fb82e270767a..b0ac7f5ca96c 100644 --- a/lib/node_modules/@stdlib/string/base/distances/levenshtein/package.json +++ b/lib/node_modules/@stdlib/string/base/distances/levenshtein/package.json @@ -1,7 +1,7 @@ { "name": "@stdlib/string/base/distances/levenshtein", "version": "0.0.0", - "description": "Calculates the Levenshtein (edit) distance between two strings.", + "description": "Calculate the Levenshtein (edit) distance between two strings.", "license": "Apache-2.0", "author": { "name": "The Stdlib Authors",