Skip to content

Commit 81d6eeb

Browse files
jmagaramzth
authored andcommitted
better explanation of floats
1 parent 91f41e0 commit 81d6eeb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/typed-arrays/Core__Float32Array.res

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** The `Float32Array` typed array represents an array of floats in platform byte order. See [Float32Array on MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float32Array)
1+
/** The `Float32Array` typed array represents an array of 32-bit floating point numbers in platform byte order. See [Float32Array on MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float32Array)
22
*/
33
type t = Core__TypedArray.t<float>
44

src/typed-arrays/Core__Float64Array.res

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** The `Float64Array` typed array represents an array of floats in platform byte order. See [Float64Array on MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float64Array)
1+
/** The `Float64Array` typed array represents an array of 64-bit floating point numbers in platform byte order. See [Float64Array on MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float64Array)
22
*/
33
type t = Core__TypedArray.t<float>
44

0 commit comments

Comments
 (0)