diff --git a/.github/workflows/npm_downloads.yml b/.github/workflows/npm_downloads.yml index 19104c5..54a276c 100644 --- a/.github/workflows/npm_downloads.yml +++ b/.github/workflows/npm_downloads.yml @@ -86,8 +86,8 @@ jobs: # Upload the download data: - name: 'Upload data' - # Pin action to full length commit SHA corresponding to v3.1.3 - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 + # Pin action to full length commit SHA + uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 with: # Define a name for the uploaded artifact (ensuring a unique name for each job): name: npm_downloads diff --git a/.github/workflows/test_bundles.yml b/.github/workflows/test_bundles.yml index 0c4e061..5c9dc95 100644 --- a/.github/workflows/test_bundles.yml +++ b/.github/workflows/test_bundles.yml @@ -168,8 +168,8 @@ jobs: # Install Deno: - name: 'Install Deno' - # Pin action to full length commit SHA corresponding to v1.1.2 - uses: denoland/setup-deno@61fe2df320078202e33d7d5ad347e7dcfa0e8f31 + # Pin action to full length commit SHA + uses: denoland/setup-deno@041b854f97b325bd60e53e9dc2de9cb9f9ac0cba # v1.1.4 with: deno-version: vx.x.x diff --git a/lib/index.js b/lib/index.js index e281871..c915404 100644 --- a/lib/index.js +++ b/lib/index.js @@ -347,13 +347,13 @@ setReadOnly( string, 'replace', require( './../replace' ) ); setReadOnly( string, 'replaceBefore', require( './../replace-before' ) ); /** -* @name reverseString +* @name reverse * @memberof string * @readonly * @type {Function} * @see {@link module:@stdlib/string/reverse} */ -setReadOnly( string, 'reverseString', require( './../reverse' ) ); +setReadOnly( string, 'reverse', require( './../reverse' ) ); /** * @name rpad