Skip to content

Commit c9e38dc

Browse files
committed
improve JSDoc syntax
1 parent 6d28723 commit c9e38dc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

json-smart/src/main/java/net/minidev/json/parser/JSONParser.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public class JSONParser {
9494
public static final int BIG_DIGIT_UNRESTRICTED = 2048;
9595

9696
/**
97-
* If limit the max depth of json size
97+
* If limit the max depth of JSON size
9898
*
9999
* @since 2.5
100100
*/
@@ -103,23 +103,23 @@ public class JSONParser {
103103
/**
104104
* If the parser is in stream mode
105105
*
106-
* <p>Stream mode is used to parse a stream of json data. It will not throw exception on
106+
* <p>Stream mode is used to parse a stream of JSON data. It will not throw exception on
107107
* incomplete data.
108108
*
109109
* @since 2.6
110110
*/
111111
public static final int ACCEPT_INCOMPLETE = 8192;
112112

113113
/**
114-
* smart mode, fastest parsing mode. accept lots of non standard json syntax ACCEPT_INCOMPLETE
114+
* smart mode, fastest parsing mode. accept lots of non standard JSON syntax ACCEPT_INCOMPLETE
115115
* feature is not enabled. in this mode, for backward compatibility
116116
*
117117
* @since 1.0.6
118118
*/
119119
public static final int MODE_PERMISSIVE = -1 & ~ACCEPT_INCOMPLETE;
120120

121121
/*
122-
* smart mode, fastest parsing mode. accept lots of non standard json syntax
122+
* smart mode, fastest parsing mode. accept lots of non standard JSON syntax
123123
* ACCEPT_INCOMPLETE feature is enabled.
124124
* @since 2.6
125125
*/

0 commit comments

Comments
 (0)