Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Apr 12, 2024
1 parent 09bbdc5 commit 4b87d85
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
1 change: 0 additions & 1 deletion .github/workflows/test_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ jobs:
uses: 8398a7/action-slack@28ba43ae48961b90635b50953d216767a6bea486 # v3.16.2
with:
status: ${{ job.status }}
steps: ${{ toJson(steps) }}
channel: '#npm-ci'
if: failure()

Expand Down
4 changes: 2 additions & 2 deletions dist/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,16 @@
* @module @stdlib/number-float32-base-significand
*
* @example
* var significandf = require( '@stdlib/number-float32-base-significand' );
*
* var toFloat32 = require( '@stdlib/number-float64-base-to-float32' );
* var significandf = require( '@stdlib/number-float32-base-significand' );
*
* var s = significandf( toFloat32( 3.14e34 ) ); // => 10000011000010001110111
* // returns 4293751
*
* s = significandf( toFloat32( 3.14e-34 ) ); // => 10100001011000001010101
* // returns 5288021
*
* s = significandf( toFloat32( -3.14 ) ); // => 10010001111010111000011
* s = significandf( toFloat32( -3.14 ) ); // => 10010001111010111000011
* // returns 4781507
*
* s = significandf( 0.0 ); // => 00000000000000000000000
Expand Down
2 changes: 1 addition & 1 deletion lib/native.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ var addon = require( './../src/addon.node' );
* s = significandf( toFloat32( 3.14e-34 ) ); // => 10100001011000001010101
* // returns 5288021
*
* s = significandf( toFloat32( -3.14 ) ); // => 10010001111010111000011
* s = significandf( toFloat32( -3.14 ) ); // => 10010001111010111000011
* // returns 4781507
*/
function significandf( x ) {
Expand Down

0 comments on commit 4b87d85

Please sign in to comment.