Fix default MAX_PRETTY_PRINT_CHARS in JsDoc

This commit is contained in:
Holger Jeromin
2026-01-19 13:41:08 +01:00
parent 066669cfee
commit 4db18aafce

View File

@@ -222,7 +222,7 @@ getJasmineRequireObj().base = function(j$, jasmineGlobal) {
* Maximum number of characters to display when pretty printing objects. * Maximum number of characters to display when pretty printing objects.
* Characters past this number will be ellipised. * Characters past this number will be ellipised.
* @name jasmine.MAX_PRETTY_PRINT_CHARS * @name jasmine.MAX_PRETTY_PRINT_CHARS
* @default 100 * @default 1000
* @since 2.9.0 * @since 2.9.0
*/ */
j$.MAX_PRETTY_PRINT_CHARS = 1000; j$.MAX_PRETTY_PRINT_CHARS = 1000;