Merge pull request #594 from anton0xf/patch-1

JSONStringer.java: fix max nesting level in javadoc
This commit is contained in:
Sean Leary 2021-03-18 19:42:49 -05:00 committed by GitHub
commit 50d619698f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,7 +50,7 @@ import java.io.StringWriter;
* <p>
* The first method called must be <code>array</code> or <code>object</code>.
* There are no methods for adding commas or colons. JSONStringer adds them for
* you. Objects and arrays can be nested up to 20 levels deep.
* you. Objects and arrays can be nested up to 200 levels deep.
* <p>
* This can sometimes be easier than using a JSONObject to build a string.
* @author JSON.org