Skip to content

Commit e335eee

Browse files
chore: update JSDOC API call
1 parent 94afbed commit e335eee

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/stats/base/dists/gamma/entropy/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
@license Apache-2.0
44
5-
Copyright (c) 2024 The Stdlib Authors.
5+
Copyright (c) 2018 The Stdlib Authors.
66
77
Licensed under the Apache License, Version 2.0 (the "License");
88
you may not use this file except in compliance with the License.
@@ -172,7 +172,7 @@ for ( i = 0; i < 10; i++ ) {
172172

173173
#### stdlib_base_dists_gamma_entropy( alpha, beta )
174174

175-
Evaluates the differential entropy for a gamma distribution with shape parameter `alpha` and rate parameter `beta`.
175+
Returns the differential entropy of a gamma distribution with shape parameter `alpha` and rate parameter `beta`.
176176

177177
```c
178178
double y = stdlib_base_dists_gamma_entropy( 1.0, 1.0 );

lib/node_modules/@stdlib/stats/base/dists/gamma/entropy/include/stdlib/stats/base/dists/gamma/entropy.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extern "C" {
2727
#endif
2828

2929
/**
30-
* Evaluates the differential entropy for a gamma distribution with shape parameter `alpha` and rate parameter `beta`.
30+
* Returns the differential entropy of a gamma distribution with shape parameter `alpha` and rate parameter `beta`.
3131
*/
3232
double stdlib_base_dists_gamma_entropy( const double alpha, const double beta );
3333

lib/node_modules/@stdlib/stats/base/dists/gamma/entropy/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include "stdlib/math/base/special/digamma.h"
2323

2424
/**
25-
* Evaluates the differential entropy for a gamma distribution with shape parameter `alpha` and rate parameter `beta`.
25+
* Returns the differential entropy of a gamma distribution with shape parameter `alpha` and rate parameter `beta`.
2626
*
2727
* @param alpha Shape parameter
2828
* @param beta Rate parameter

0 commit comments

Comments
 (0)