Skip to content

Commit ba6c43f

Browse files
committed
fix: resolve lint issues
1 parent 7803f7d commit ba6c43f

File tree

3 files changed

+76
-75
lines changed

3 files changed

+76
-75
lines changed

lib/node_modules/@stdlib/constants/float32/fourth-root-eps/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ Macro for the [fourth root][nth-root] of [single-precision floating-point epsilo
127127
<section class="links">
128128

129129
[nth-root]: https://en.wikipedia.org/wiki/Nth_root
130+
[@stdlib/constants/float32/eps]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/constants/float32/eps
130131

131132
</section>
132133

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
/**
2-
* @license Apache-2.0
3-
*
4-
* Copyright (c) 2025 The Stdlib Authors.
5-
*
6-
* Licensed under the Apache License, Version 2.0 (the "License");
7-
* you may not use this file except in compliance with the License.
8-
* You may obtain a copy of the License at
9-
*
10-
* http://www.apache.org/licenses/LICENSE-2.0
11-
*
12-
* Unless required by applicable law or agreed to in writing, software
13-
* distributed under the License is distributed on an "AS IS" BASIS,
14-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15-
* See the License for the specific language governing permissions and
16-
* limitations under the License.
17-
*/
2+
* @license Apache-2.0
3+
*
4+
* Copyright (c) 2025 The Stdlib Authors.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
1818

19-
#ifndef STDLIB_CONSTANTS_FLOAT32_FOURTH_ROOT_EPS_H
20-
#define STDLIB_CONSTANTS_FLOAT32_FOURTH_ROOT_EPS_H
19+
#ifndef STDLIB_CONSTANTS_FLOAT32_FOURTH_ROOT_EPS_H
20+
#define STDLIB_CONSTANTS_FLOAT32_FOURTH_ROOT_EPS_H
2121

22-
/**
23-
* Macro for the fourth root of single-precision floating-point epsilon.
24-
*/
25-
#define STDLIB_CONSTANT_FLOAT32_FOURTH_ROOT_EPS 0.018581360578536987f
22+
/**
23+
* Macro for the fourth root of single-precision floating-point epsilon.
24+
*/
25+
#define STDLIB_CONSTANT_FLOAT32_FOURTH_ROOT_EPS 0.018581360578536987f
2626

27-
#endif // !STDLIB_CONSTANTS_FLOAT32_FOURTH_ROOT_EPS_H
27+
#endif // !STDLIB_CONSTANTS_FLOAT32_FOURTH_ROOT_EPS_H
Lines changed: 52 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,53 @@
11
/**
2-
* @license Apache-2.0
3-
*
4-
* Copyright (c) 2025 The Stdlib Authors.
5-
*
6-
* Licensed under the Apache License, Version 2.0 (the "License");
7-
* you may not use this file except in compliance with the License.
8-
* You may obtain a copy of the License at
9-
*
10-
* http://www.apache.org/licenses/LICENSE-2.0
11-
*
12-
* Unless required by applicable law or agreed to in writing, software
13-
* distributed under the License is distributed on an "AS IS" BASIS,
14-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15-
* See the License for the specific language governing permissions and
16-
* limitations under the License.
17-
*/
18-
19-
'use strict';
20-
21-
/**
22-
* Fourth root of single-precision floating-point epsilon.
23-
*
24-
* @module @stdlib/constants/float32/fourth-root-eps
25-
* @type {number}
26-
*
27-
* @example
28-
* var FLOAT32_FOURTH_ROOT_EPS = require( '@stdlib/constants/float32/fourth-root-eps' );
29-
* // returns 0.018581360578536987
30-
*/
31-
32-
33-
// MAIN //
34-
35-
/**
36-
* Fourth root of single-precision floating-point epsilon.
37-
*
38-
* ```tex
39-
* \sqrt{\sqrt{\frac{1}{2^{23}}}}
40-
* ```
41-
*
42-
* @constant
43-
* @type {number}
44-
* @default 0.018581360578536987
45-
* @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985}
46-
* @see [Machine Epsilon]{@link https://en.wikipedia.org/wiki/Machine_epsilon}
47-
*/
48-
var FLOAT32_FOURTH_ROOT_EPS = 0.018581360578536987;
49-
50-
51-
// EXPORTS //
52-
53-
module.exports = FLOAT32_FOURTH_ROOT_EPS;
2+
* @license Apache-2.0
3+
*
4+
* Copyright (c) 2025 The Stdlib Authors.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
19+
'use strict';
20+
21+
/**
22+
* Fourth root of single-precision floating-point epsilon.
23+
*
24+
* @module @stdlib/constants/float32/fourth-root-eps
25+
* @type {number}
26+
*
27+
* @example
28+
* var FLOAT32_FOURTH_ROOT_EPS = require( '@stdlib/constants/float32/fourth-root-eps' );
29+
* // returns 0.018581360578536987
30+
*/
31+
32+
33+
// MAIN //
34+
35+
/**
36+
* Fourth root of single-precision floating-point epsilon.
37+
*
38+
* ```tex
39+
* \sqrt{\sqrt{\frac{1}{2^{23}}}}
40+
* ```
41+
*
42+
* @constant
43+
* @type {number}
44+
* @default 0.018581360578536987
45+
* @see [IEEE 754]{@link https://en.wikipedia.org/wiki/IEEE_754-1985}
46+
* @see [Machine Epsilon]{@link https://en.wikipedia.org/wiki/Machine_epsilon}
47+
*/
48+
var FLOAT32_FOURTH_ROOT_EPS = 0.018581360578536987;
49+
50+
51+
// EXPORTS //
52+
53+
module.exports = FLOAT32_FOURTH_ROOT_EPS;

0 commit comments

Comments
 (0)