Skip to content

Commit 6acade4

Browse files
committed
Auto-generated commit
1 parent c2ad458 commit 6acade4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/factory.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ function factory() {
186186
* Returns the PRNG seed.
187187
*
188188
* @private
189-
* @returns {*} seed
189+
* @returns {Uint32Array} seed
190190
*/
191191
function getSeed() {
192192
return rand.PRNG.seed;
@@ -226,7 +226,7 @@ function factory() {
226226
* Returns the current pseudorandom number generator state.
227227
*
228228
* @private
229-
* @returns {*} current state
229+
* @returns {Uint32Array} current state
230230
*/
231231
function getState() {
232232
return rand.PRNG.state;
@@ -236,7 +236,7 @@ function factory() {
236236
* Sets the pseudorandom number generator state.
237237
*
238238
* @private
239-
* @param {*} s - generator state
239+
* @param {Uint32Array} s - generator state
240240
* @throws {Error} must provide a valid state
241241
*/
242242
function setState( s ) {

0 commit comments

Comments
 (0)