From cde6ea79a3f309129d9d20f0f8de05abb1a07d02 Mon Sep 17 00:00:00 2001 From: Tony Brix Date: Thu, 25 Mar 2021 22:05:02 -0500 Subject: [PATCH 1/2] docs: fix jsdoc seed type --- src/core/Env.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Env.js b/src/core/Env.js index 62454373..0b4378f3 100644 --- a/src/core/Env.js +++ b/src/core/Env.js @@ -53,7 +53,7 @@ getJasmineRequireObj().Env = function(j$) { * Null causes the seed to be determined randomly at the start of execution. * @name Configuration#seed * @since 3.3.0 - * @type function + * @type number * @default null */ seed: null, From 3f232fba80f32fa1b81d68d6921b052088fc1a3a Mon Sep 17 00:00:00 2001 From: Tony Brix Date: Fri, 26 Mar 2021 00:10:15 -0500 Subject: [PATCH 2/2] docs: seed can be number or string --- src/core/Env.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Env.js b/src/core/Env.js index 0b4378f3..2c1f4cf8 100644 --- a/src/core/Env.js +++ b/src/core/Env.js @@ -53,7 +53,7 @@ getJasmineRequireObj().Env = function(j$) { * Null causes the seed to be determined randomly at the start of execution. * @name Configuration#seed * @since 3.3.0 - * @type number + * @type (number|string) * @default null */ seed: null,