Skip to content

Commit 7ddbcbe

Browse files
authored
docs: fix typos in math/base/ops/subf
PR-URL: #5290 Reviewed-by: Athan Reines <[email protected]>
1 parent c7bfa92 commit 7ddbcbe

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/math/base/ops/subf

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/math/base/ops/subf/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ for ( i = 0; i < 100; i++ ) {
131131
Subtracts two single-precision floating-point numbers.
132132

133133
```c
134-
float v = stdlib_base_sub( -5.0f, 2.0f );
134+
float v = stdlib_base_subf( -5.0f, 2.0f );
135135
// returns -7.0f
136136
```
137137

@@ -141,7 +141,7 @@ The function accepts the following arguments:
141141
- **y**: `[in] float` second input value.
142142

143143
```c
144-
float stdlib_base_sub( const float x, const float y );
144+
float stdlib_base_subf( const float x, const float y );
145145
```
146146
147147
</section>

0 commit comments

Comments
 (0)