Skip to content

Commit 56756e0

Browse files
authored
chore: apply suggestions from code review
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent d92269d commit 56756e0

File tree

1 file changed

+0
-13
lines changed
  • lib/node_modules/@stdlib/math/base/special/rising-factorial/src

1 file changed

+0
-13
lines changed

lib/node_modules/@stdlib/math/base/special/rising-factorial/src/main.c

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
* ```
3030
*/
3131

32-
#include "stdlib/math/base/assert/is_integer.h"
3332
#include "stdlib/math/base/assert/is_nan.h"
3433
#include "stdlib/math/base/special/gamma_delta_ratio.h"
3534
#include "stdlib/math/base/special/falling_factorial.h"
@@ -60,18 +59,6 @@
6059
* @example
6160
* double v = stdlib_base_rising_factorial( 0.9, 5 );
6261
* // returns ~94.766
63-
*
64-
* @example
65-
* double v = stdlib_base_rising_factorial( -9.0, 3 );
66-
* // returns -504.0
67-
*
68-
* @example
69-
* double v = stdlib_base_rising_factorial( 0.0, 2 );
70-
* // returns 0.0
71-
*
72-
* @example
73-
* double v = stdlib_base_rising_factorial( 3.0, -2 );
74-
* // returns 0.5
7562
*/
7663
double stdlib_base_rising_factorial( const double x, const int32_t n ) {
7764
double result;

0 commit comments

Comments
 (0)