We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
math/base/ops/subf
1 parent c7bfa92 commit 7ddbcbeCopy full SHA for 7ddbcbe
lib/node_modules/@stdlib/math/base/ops/subf/README.md
@@ -131,7 +131,7 @@ for ( i = 0; i < 100; i++ ) {
131
Subtracts two single-precision floating-point numbers.
132
133
```c
134
-float v = stdlib_base_sub( -5.0f, 2.0f );
+float v = stdlib_base_subf( -5.0f, 2.0f );
135
// returns -7.0f
136
```
137
@@ -141,7 +141,7 @@ The function accepts the following arguments:
141
- **y**: `[in] float` second input value.
142
143
144
-float stdlib_base_sub( const float x, const float y );
+float stdlib_base_subf( const float x, const float y );
145
146
147
</section>
0 commit comments