Skip to content

Commit 35462f8

Browse files
authored
style: update heading and fix line wrapping
PR-URL: #2867 Ref: b2268e5#r146319909 Ref: b2268e5#r146319967 Ref: b2268e5#r146319998 Reviewed-by: Athan Reines <[email protected]>
1 parent 6c838b0 commit 35462f8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@ limitations under the License.
1818
1919
-->
2020

21-
# Arccoversinef
21+
# acoversinf
2222

2323
> Compute the [inverse coversed sine][inverse-coversed-sine] of a single-precision floating-point number (in radians).
2424
2525
<section class="intro">
2626

2727
The [inverse coversed sine][inverse-coversed-sine] is defined as
2828

29-
<!-- <equation class="equation" label="eq:arccoversine" align="center" raw="\operatorname{acoversinf}(\theta) = \arcsin(1-\theta)" alt="Inverse coversed sine."> -->
29+
<!-- <equation class="equation" label="eq:arccoversine" align="center" raw="\operatorname{acoversin}(\theta) = \arcsin(1-\theta)" alt="Inverse coversed sine."> -->
3030

3131
```math
32-
\mathop{\mathrm{acoversinf}}(\theta) = \arcsin(1-\theta)
32+
\mathop{\mathrm{acoversin}}(\theta) = \arcsin(1-\theta)
3333
```
3434

3535
<!-- </equation> -->
@@ -167,7 +167,7 @@ float stdlib_base_acoversinf( const float x );
167167
168168
int main( void ) {
169169
const float x[] = { -5.0f, -3.89f, -2.78f, -1.67f, -0.56f, 0.56f, 1.67f, 2.78f, 3.89f, 5.0f };
170-
170+
171171
float v;
172172
int i;
173173
for ( i = 0; i < 10; i++ ) {

lib/node_modules/@stdlib/math/base/special/acoversinf/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
{{alias}}( x )
3-
Computes the inverse coversed sine of a single-precision
4-
floating-point number (in radians).
3+
Computes the inverse coversed sine of a single-precision floating-point
4+
number (in radians).
55

66
The inverse coversed sine is defined as `asin(1-x)`.
77

0 commit comments

Comments
 (0)