Skip to content

Commit 1c0418d

Browse files
committed
Auto-generated commit
1 parent 4d13606 commit 1c0418d

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-02-25)
7+
## Unreleased (2026-02-27)
88

99
<section class="features">
1010

@@ -59,6 +59,7 @@ This release closes the following issue:
5959

6060
<details>
6161

62+
- [`fda918b`](https://github.com/stdlib-js/stdlib/commit/fda918b01397d0a842c3d3fb87a4680122eaa8ff) - **docs:** fix section structure and lint errors in READMEs _(by Philipp Burckhardt)_
6263
- [`0ebd0ed`](https://github.com/stdlib-js/stdlib/commit/0ebd0ed2722511ffc2a8a158a387aeb90d915c8f) - **docs:** fix lint errors in README files _(by Philipp Burckhardt)_
6364
- [`46c47ec`](https://github.com/stdlib-js/stdlib/commit/46c47ec0c92f9a3608290ef8a6ca5cf0e9258866) - **refactor:** update paths _(by Neeraj Pathak)_
6465
- [`ce53fb5`](https://github.com/stdlib-js/stdlib/commit/ce53fb5de8b6c28a1ea088bdc58c3ef24ef5c095) - **feat:** update error databases [(#9033)](https://github.com/stdlib-js/stdlib/pull/9033) _(by stdlib-bot)_

tools/fmtprodmsg/README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,11 @@ Formats an error message for production.
3636

3737
```javascript
3838
var msg = fmtprodmsg( '27', 'foo', 'bar' );
39-
// returns 'https://stdlib.io/e/27?arg[]=foo&arg[]=bar'
39+
// returns 'https://stdlib.io/e/27?&arg[]=foo&arg[]=bar'
4040
```
4141

42+
</section>
43+
4244
<!-- /.usage -->
4345

4446
<!-- Package usage notes. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
@@ -61,13 +63,13 @@ var msg = fmtprodmsg( '27', 'foo', 'bar' );
6163
var fmtprodmsg = require( '@stdlib/error/tools/fmtprodmsg' );
6264

6365
var msg = fmtprodmsg( '3', 'foo' );
64-
// returns 'https://stdlib.io/e?code=3&arg[]=foo'
66+
// returns 'https://stdlib.io/e/3?&arg[]=foo'
6567

6668
msg = fmtprodmsg( '5', 'foo', 'bar' );
67-
// returns 'https://stdlib.io/e/5?arg[]=foo&arg[]=bar'
69+
// returns 'https://stdlib.io/e/5?&arg[]=foo&arg[]=bar'
6870

6971
msg = fmtprodmsg( '5', 'foo', 'bar', 123 );
70-
// returns 'https://stdlib.io/e/5?arg[]=foo&arg[]=bar&arg[]=123'
72+
// returns 'https://stdlib.io/e/5?&arg[]=foo&arg[]=bar&arg[]=123'
7173
```
7274

7375
</section>

0 commit comments

Comments
 (0)