diff --git a/lib/jasmine-core/jasmine.js b/lib/jasmine-core/jasmine.js index a68f1b20..6fb31080 100644 --- a/lib/jasmine-core/jasmine.js +++ b/lib/jasmine-core/jasmine.js @@ -7552,7 +7552,7 @@ getJasmineRequireObj().interface = function(jasmine, env) { * @since 3.6.0 * @function * @param {Function} formatter - A function which takes a value to format and returns a string if it knows how to format it, and `undefined` otherwise. - * @see custom_object_formatter + * @see custom_object_formatters */ jasmine.addCustomObjectFormatter = function(formatter) { return env.addCustomObjectFormatter(formatter); diff --git a/src/core/requireInterface.js b/src/core/requireInterface.js index a468d880..6473ffaa 100644 --- a/src/core/requireInterface.js +++ b/src/core/requireInterface.js @@ -351,7 +351,7 @@ getJasmineRequireObj().interface = function(jasmine, env) { * @since 3.6.0 * @function * @param {Function} formatter - A function which takes a value to format and returns a string if it knows how to format it, and `undefined` otherwise. - * @see custom_object_formatter + * @see custom_object_formatters */ jasmine.addCustomObjectFormatter = function(formatter) { return env.addCustomObjectFormatter(formatter);