diff --git a/lib/jasmine-core/jasmine.js b/lib/jasmine-core/jasmine.js index b91f4ece..74bfe154 100644 --- a/lib/jasmine-core/jasmine.js +++ b/lib/jasmine-core/jasmine.js @@ -795,7 +795,7 @@ getJasmineRequireObj().Spec = function(j$) { * @property {String} status - Once the spec has completed, this string represents the pass/fail status of this spec. * @property {number} duration - The time in ms used by the spec execution, including any before/afterEach. * @property {Object} properties - User-supplied properties, if any, that were set using {@link Env#setSpecProperty} - * @property {TraceEntry[]|null} trace - Trace messages, if any, that were logged using {@link Env#trace} during a failing spec. + * @property {TraceEntry[]|null} trace - Trace messages, if any, that were logged using {@link jasmine.trace} during a failing spec. * @since 2.0.0 */ this.result = { @@ -991,7 +991,7 @@ getJasmineRequireObj().Spec = function(j$) { /** * @typedef TraceEntry - * @property {String} message - The message that was passed to {@link Env#trace}. + * @property {String} message - The message that was passed to {@link jasmine.trace}. * @property {number} timestamp - The time when the entry was added, in * milliseconds from the spec's start time */ diff --git a/src/core/Spec.js b/src/core/Spec.js index 458eb751..6198d24f 100644 --- a/src/core/Spec.js +++ b/src/core/Spec.js @@ -69,7 +69,7 @@ getJasmineRequireObj().Spec = function(j$) { * @property {String} status - Once the spec has completed, this string represents the pass/fail status of this spec. * @property {number} duration - The time in ms used by the spec execution, including any before/afterEach. * @property {Object} properties - User-supplied properties, if any, that were set using {@link Env#setSpecProperty} - * @property {TraceEntry[]|null} trace - Trace messages, if any, that were logged using {@link Env#trace} during a failing spec. + * @property {TraceEntry[]|null} trace - Trace messages, if any, that were logged using {@link jasmine.trace} during a failing spec. * @since 2.0.0 */ this.result = { @@ -265,7 +265,7 @@ getJasmineRequireObj().Spec = function(j$) { /** * @typedef TraceEntry - * @property {String} message - The message that was passed to {@link Env#trace}. + * @property {String} message - The message that was passed to {@link jasmine.trace}. * @property {number} timestamp - The time when the entry was added, in * milliseconds from the spec's start time */