Skip to content

Commit 4426979

Browse files
committed
Update descriptions
1 parent 33887de commit 4426979

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

lib/node_modules/@stdlib/number/float32/base/to-word/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ for ( i = 0; i < 1000; i++ ) {
121121

122122
#### stdlib_base_float32_to_word( x, \*word )
123123

124-
Converts a single-precision floating-point number to an unsigned 32-bit integer corresponding to the number's binary representation.
124+
Converts a single-precision floating-point number to an unsigned 32-bit integer corresponding to the number's [IEEE 754][ieee754] binary representation.
125125

126126
```c
127127
#include <stdint.h>

lib/node_modules/@stdlib/number/float32/base/to-word/include/stdlib/number/float32/base/to_word.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ typedef union {
4949

5050

5151
/**
52-
* Convert a single-precision floating-point number into an unsigned 32-bit integer corresponding to the number's binary representation.
52+
* Convert a single-precision floating-point number into an unsigned 32-bit integer corresponding to the number's IEEE 754 binary representation.
5353
*/
5454
void stdlib_base_float32_to_word( const float x, uint32_t *word );
5555

lib/node_modules/@stdlib/number/float32/base/to-word/src/to_word.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#include <stdint.h>
2121

2222
/**
23-
* Converts a single-precision floating-point number to an unsigned 32-bit integer corresponding to the number's binary representation.
23+
* Converts a single-precision floating-point number to an unsigned 32-bit integer corresponding to the number's IEEE 754 binary representation.
2424
*
2525
* @param x input value
2626
* @param word destination

0 commit comments

Comments
 (0)