Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Sep 24, 2023
1 parent d45ea19 commit 6736d13
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,8 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors].
[npm-image]: http://img.shields.io/npm/v/@stdlib/slice-base-str2multislice.svg
[npm-url]: https://npmjs.org/package/@stdlib/slice-base-str2multislice

[test-image]: https://github.com/stdlib-js/slice-base-str2multislice/actions/workflows/test.yml/badge.svg?branch=v0.1.0
[test-url]: https://github.com/stdlib-js/slice-base-str2multislice/actions/workflows/test.yml?query=branch:v0.1.0
[test-image]: https://github.com/stdlib-js/slice-base-str2multislice/actions/workflows/test.yml/badge.svg?branch=main
[test-url]: https://github.com/stdlib-js/slice-base-str2multislice/actions/workflows/test.yml?query=branch:main

[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/slice-base-str2multislice/main.svg
[coverage-url]: https://codecov.io/github/stdlib-js/slice-base-str2multislice?branch=main
Expand Down
1 change: 1 addition & 0 deletions docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ import { MultiSlice } from '@stdlib/types/slice';
* @param str - input string
* @returns MultiSlice object (or null)
*
* @example
* var s = str2multislice( 'MultiSlice(null,null,null)' );
* // returns <MultiSlice>
*
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
"@stdlib/types": "^0.1.0"
},
"devDependencies": {
"@stdlib/assert-is-multi-slice": "github:stdlib-js/assert-is-multi-slice#main",
"@stdlib/assert-is-slice": "github:stdlib-js/assert-is-slice#main",
"@stdlib/assert-is-multi-slice": "^0.1.0",
"@stdlib/assert-is-slice": "^0.1.0",
"@stdlib/bench": "^0.1.0",
"@stdlib/slice-ctor": "^0.1.0",
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
Expand Down
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ tape( 'main export is a function', function test( t ) {
t.end();
});

tape( 'the function returns `null` if provided a first argument which is not a valid subsequence string', function test( t ) {
tape( 'the function returns `null` if provided a first argument which is not a valid string', function test( t ) {
var values;
var i;

Expand Down

0 comments on commit 6736d13

Please sign in to comment.