From 06bcf1c2e1ff8ed9a3b8ed96a0c89aaa00309f1e Mon Sep 17 00:00:00 2001 From: Steve Gravrock Date: Sat, 5 Oct 2024 13:38:52 -0700 Subject: [PATCH] Fixed broken docs link --- lib/jasmine-core/jasmine.js | 2 +- src/core/Env.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/jasmine-core/jasmine.js b/lib/jasmine-core/jasmine.js index 1ef6ac0f..b9a815df 100644 --- a/lib/jasmine-core/jasmine.js +++ b/lib/jasmine-core/jasmine.js @@ -1429,7 +1429,7 @@ getJasmineRequireObj().Env = function(j$) { * @extends Error * @description Represents a failure of an expectation evaluated with * {@link throwUnless}. Properties of this error are a subset of the - * properties of {@link Expectation} and have the same values. + * properties of {@link ExpectationResult} and have the same values. * @property {String} matcherName - The name of the matcher that was executed for this expectation. * @property {String} message - The failure message for the expectation. * @property {Boolean} passed - Whether the expectation passed or failed. diff --git a/src/core/Env.js b/src/core/Env.js index b922cb26..402cd53a 100644 --- a/src/core/Env.js +++ b/src/core/Env.js @@ -272,7 +272,7 @@ getJasmineRequireObj().Env = function(j$) { * @extends Error * @description Represents a failure of an expectation evaluated with * {@link throwUnless}. Properties of this error are a subset of the - * properties of {@link Expectation} and have the same values. + * properties of {@link ExpectationResult} and have the same values. * @property {String} matcherName - The name of the matcher that was executed for this expectation. * @property {String} message - The failure message for the expectation. * @property {Boolean} passed - Whether the expectation passed or failed.