From 0441176842aa621bace6bb098ef669638b5cd787 Mon Sep 17 00:00:00 2001 From: Athan Reines Date: Wed, 2 Oct 2024 17:36:18 -0700 Subject: [PATCH] docs: fix descriptions --- lib/node_modules/@stdlib/blas/base/isamax/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/base/isamax/README.md b/lib/node_modules/@stdlib/blas/base/isamax/README.md index 9994b731bd2..c1e6e887fa1 100644 --- a/lib/node_modules/@stdlib/blas/base/isamax/README.md +++ b/lib/node_modules/@stdlib/blas/base/isamax/README.md @@ -183,7 +183,7 @@ int idx = c_isamax( 5, x, 1 ); The function accepts the following arguments: - **N**: `[in] CBLAS_INT` number of indexed elements. -- **X**: `[in] float*` first input array. +- **X**: `[in] float*` input array. - **strideX**: `[in] CBLAS_INT` index increment for `X`. ```c @@ -204,7 +204,7 @@ int idx = c_isamax_ndarray( 5, x, 1, 0 ); The function accepts the following arguments: - **N**: `[in] CBLAS_INT` number of indexed elements. -- **X**: `[in] float*` first input array. +- **X**: `[in] float*` input array. - **strideX**: `[in] CBLAS_INT` index increment for `X`. - **offsetX**: `[in] CBLAS_INT` starting index for `X`.