Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/math/base/ops/subf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ for ( i = 0; i < 100; i++ ) {
Subtracts two single-precision floating-point numbers.

```c
float v = stdlib_base_sub( -5.0f, 2.0f );
float v = stdlib_base_subf( -5.0f, 2.0f );
// returns -7.0f
```

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

```c
float stdlib_base_sub( const float x, const float y );
float stdlib_base_subf( const float x, const float y );
```

</section>
Expand Down