Skip to content

Commit 0d65593

Browse files
Update README.md
1 parent ba7d357 commit 0d65593

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ FastJsonparser.parse("123: 1") # FastJsonparser::ParseError (parse error)
132132

133133
`FastJsonparser` behaves mostly like stdlib's `JSON`, but there are a few corner cases:
134134

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`.
136136
- `FastJsonparser` will raise on integers outside of the 64bits range (`-9223372036854775808..18446744073709551615`), `JSON` will parse them fine.
137137
- `FastJsonparser` will raise on invalid string escapings (`"\x15"`), `JSON` will often handle some of them.
138138
- `FastJsonparser` will raise on `/**/` comments. `JSON` will sometimes ignore them, sometimes raise.

0 commit comments

Comments
 (0)