File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
json-smart/src/main/java/net/minidev/json/parser Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ public class JSONParser {
94
94
public static final int BIG_DIGIT_UNRESTRICTED = 2048 ;
95
95
96
96
/**
97
- * If limit the max depth of json size
97
+ * If limit the max depth of JSON size
98
98
*
99
99
* @since 2.5
100
100
*/
@@ -103,23 +103,23 @@ public class JSONParser {
103
103
/**
104
104
* If the parser is in stream mode
105
105
*
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
107
107
* incomplete data.
108
108
*
109
109
* @since 2.6
110
110
*/
111
111
public static final int ACCEPT_INCOMPLETE = 8192 ;
112
112
113
113
/**
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
115
115
* feature is not enabled. in this mode, for backward compatibility
116
116
*
117
117
* @since 1.0.6
118
118
*/
119
119
public static final int MODE_PERMISSIVE = -1 & ~ACCEPT_INCOMPLETE ;
120
120
121
121
/*
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
123
123
* ACCEPT_INCOMPLETE feature is enabled.
124
124
* @since 2.6
125
125
*/
You can’t perform that action at this time.
0 commit comments