File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ FastJsonparser.parse("123: 1") # FastJsonparser::ParseError (parse error)
132
132
133
133
` FastJsonparser ` behaves mostly like stdlib's ` JSON ` , but there are a few corner cases:
134
134
135
- - ` FastJsonparser ` will use symbols for hash keys by default. You can pass ` symbolize_names : false` to have strings instead like ` JSON ` .
135
+ - ` FastJsonparser ` will use symbols for hash keys by default. You can pass ` symbolize_keys : false` to have strings instead like ` JSON ` .
136
136
- ` FastJsonparser ` will raise on integers outside of the 64bits range (` -9223372036854775808..18446744073709551615 ` ), ` JSON ` will parse them fine.
137
137
- ` FastJsonparser ` will raise on invalid string escapings (` "\x15" ` ), ` JSON ` will often handle some of them.
138
138
- ` FastJsonparser ` will raise on ` /**/ ` comments. ` JSON ` will sometimes ignore them, sometimes raise.
You can’t perform that action at this time.
0 commit comments