Skip to content

Commit 24e19f9

Browse files
committed
chore: minor clean-up
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 6cfd0be commit 24e19f9

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

lib/node_modules/@stdlib/math/base/special/cabs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ int main( void ) {
181181
v = x[ i ];
182182
y = stdlib_base_cabs( v );
183183
stdlib_complex128_reim( v, &re, &im );
184-
printf( "f(%lf + %lf) = %lf\n", re, im, y );
184+
printf( "cabs(%lf + %lfi) = %lf\n", re, im, y );
185185
}
186186
}
187187
```

lib/node_modules/@stdlib/math/base/special/dirac-deltaf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ The function accepts the following arguments:
153153
- **x**: `[in] float` input value.
154154

155155
```c
156-
float stdlib_base_dirac_delta( const float x );
156+
float stdlib_base_dirac_deltaf( const float x );
157157
```
158158
159159
</section>

lib/node_modules/@stdlib/math/base/special/erfinv/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ double stdlib_base_erfinv( const double x );
201201
#include <stdlib.h>
202202
#include <stdio.h>
203203
204-
int main() {
204+
int main( void ) {
205205
const double x[] = { -1.0, -0.78, -0.56, -0.33, -0.11, 0.11, 0.33, 0.56, 0.78, 1.0 };
206206
double v;
207207
int i;

lib/node_modules/@stdlib/math/base/special/expm1rel/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ logEachMap( '(e^%0.3f - 1)/%0.3f = %0.3f', x, x, expm1rel );
140140
#include "stdlib/math/base/special/expm1rel.h"
141141
```
142142

143-
#### stdlib_base_exmp1rel( x )
143+
#### stdlib_base_expm1rel( x )
144144

145145
Computes the relative error exponential.
146146

lib/node_modules/@stdlib/math/base/special/fast/asinh/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ logEachMap( 'asinh(%0.4f) = %0.4f', x, asinh );
136136

137137
#### stdlib_base_fast_asinh( x )
138138

139-
Computes the [hyperbolic arcsine][inverse-hyperbolic] of double-precision floating-point number.
139+
Computes the [hyperbolic arcsine][inverse-hyperbolic] of a double-precision floating-point number.
140140

141141
```c
142142
double out = stdlib_base_fast_asinh( 0.0 );

lib/node_modules/@stdlib/math/base/special/fast/hypot/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ logEachMap( 'hypot(%d,%d) = %0.4f', x, y, hypot );
126126
### Usage
127127

128128
```c
129-
#include "stdlib/math/base/special/fast/hypot.h
129+
#include "stdlib/math/base/special/fast/hypot.h"
130130
```
131131

132132
#### stdlib_base_fast_hypot( x, y )

lib/node_modules/@stdlib/math/base/special/flipsign/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Returns a [double-precision floating-point number][ieee754] with the magnitude o
127127
double v = stdlib_base_flipsign( -3.0, 10.0 );
128128
// returns -3.0
129129

130-
double v = stdlib_base_flipsign( -3.0, -1.0 );
130+
v = stdlib_base_flipsign( -3.0, -1.0 );
131131
// returns 3.0
132132
```
133133

lib/node_modules/@stdlib/math/base/special/floorn/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ double y = stdlib_base_floorn( 3.141592653589793, -4 );
133133
// returns 3.1415
134134
135135
// If n = 0, `floorn` behaves like `floor`:
136-
double y = stdlib_base_floorn( 3.141592653589793, 0 );
136+
y = stdlib_base_floorn( 3.141592653589793, 0 );
137137
// returns 3.0
138138
```
139139

@@ -168,7 +168,7 @@ double stdlib_base_floorn( const double x, const int32_t n );
168168
#include "stdlib/math/base/special/floorn.h"
169169
#include <stdio.h>
170170

171-
int main() {
171+
int main( void ) {
172172
const double x[] = { 3.14, -3.14, 0.0, 0.0/0.0 };
173173

174174
double y;

lib/node_modules/@stdlib/math/base/special/gammaincinv/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ limitations under the License.
1818
1919
-->
2020

21-
# gammincinv
21+
# gammaincinv
2222

2323
> Inverse of [incomplete gamma function][incomplete-gamma-function].
2424

lib/node_modules/@stdlib/math/base/special/hypot/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ logEachMap( 'h(%d,%d) = %0.4f', x, y, hypot );
159159
### Usage
160160

161161
```c
162-
#include "stdlib/math/base/special/hypot.h
162+
#include "stdlib/math/base/special/hypot.h"
163163
```
164164

165165
#### stdlib_base_hypot( x, y )

0 commit comments

Comments
 (0)