Skip to content

Commit 02607bd

Browse files
authored
chore: apply suggestions from code review
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent 23f3696 commit 02607bd

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ double out = stdlib_base_dists_planck_entropy( 1.5 );
157157

158158
The function accepts the following arguments:
159159

160-
- **lambda**: `[in] double` shape parameter
160+
- **lambda**: `[in] double` shape parameter.
161161

162162
```c
163163
double stdlib_base_dists_planck_entropy( const double lambda );

lib/node_modules/@stdlib/stats/base/dists/planck/entropy/include/stdlib/stats/base/dists/planck/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 Planck distribution with shape parameter `lambda`.
30+
* Returns the differential entropy for a Planck distribution with shape parameter `lambda`.
3131
*/
3232
double stdlib_base_dists_planck_entropy( const double lambda );
3333

lib/node_modules/@stdlib/stats/base/dists/planck/entropy/lib/native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ var addon = require( './../src/addon.node' );
2626
// MAIN //
2727

2828
/**
29-
* Evaluates the differential entropy for a Planck distribution with shape parameter `lambda`.
29+
* Returns the differential entropy for a Planck distribution with shape parameter `lambda`.
3030
*
3131
* @private
32-
* @param {number} lambda - shape parameter of the Planck distribution
32+
* @param {PositiveNumber} lambda - shape parameter
3333
* @returns {number} differential entropy in nats
3434
*
3535
* @example

0 commit comments

Comments
 (0)