Skip to content

Commit 5e624b1

Browse files
committed
Auto-generated commit
1 parent d3d7b6e commit 5e624b1

4 files changed

Lines changed: 17 additions & 3 deletions

File tree

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,15 @@ indent_style = tab
165165
indent_style = space
166166
indent_size = 2
167167
168+
# Ignore generated lock files for GitHub Agentic Workflows:
169+
[*.lock.yml]
170+
charset = unset
171+
end_of_line = unset
172+
indent_style = unset
173+
indent_size = unset
174+
trim_trailing_whitespace = unset
175+
insert_final_newline = unset
176+
168177
# Set properties for GYP files:
169178
[binding.gyp]
170179
indent_style = space

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,5 @@ Makefile linguist-vendored
6464

6565
# Configure files which should be included in GitHub language statistics:
6666
docs/types/*.d.ts -linguist-documentation
67+
68+
.github/workflows/*.lock.yml linguist-generated=true merge=ours

CHANGELOG.md

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

7-
## Unreleased (2026-03-15)
7+
## Unreleased (2026-03-25)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`f9dbbfa`](https://github.com/stdlib-js/stdlib/commit/f9dbbfaf48e1830f1c9fb685856eac2edba3fac6) - **docs:** fix C examples [(#11138)](https://github.com/stdlib-js/stdlib/pull/11138) _(by anee3, Athan Reines)_
1516
- [`353e1b0`](https://github.com/stdlib-js/stdlib/commit/353e1b00fae2d4d90eea6c1404472503a74fc1d2) - **docs:** fix C example codeblock in `stats/base/dists/invgamma/mode/README.md` [(#10938)](https://github.com/stdlib-js/stdlib/pull/10938) _(by Om-A-osc)_
1617
- [`8a6c701`](https://github.com/stdlib-js/stdlib/commit/8a6c701c26772991b4f50e0d2b5194d676c80d1b) - **bench:** refactor to use string interpolation in `stats/base/dists/invgamma` [(#10442)](https://github.com/stdlib-js/stdlib/pull/10442) _(by Lokesh Ranjan)_
1718
- [`f38e8a7`](https://github.com/stdlib-js/stdlib/commit/f38e8a7b433e0e9888eb57c83f4374073089ad85) - **docs:** clean-up parameters in Julia fixtures scripts _(by Philipp Burckhardt)_
@@ -26,11 +27,13 @@
2627

2728
### Contributors
2829

29-
A total of 3 people contributed to this release. Thank you to the following contributors:
30+
A total of 5 people contributed to this release. Thank you to the following contributors:
3031

32+
- Athan Reines
3133
- Lokesh Ranjan
3234
- Om-A-osc
3335
- Philipp Burckhardt
36+
- anee3
3437

3538
</section>
3639

src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* @return mode
2727
*
2828
* @example
29-
* double y = stdlib_base_invgamma_mode( 1.0, 1.0 );
29+
* double y = stdlib_base_dists_invgamma_mode( 1.0, 1.0 );
3030
* // returns 0.5
3131
*/
3232
double stdlib_base_dists_invgamma_mode( const double alpha, const double beta ) {

0 commit comments

Comments
 (0)