summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2021-04-26 02:59:47 +0900
committerRyuta Kamizono <kamipo@gmail.com>2021-04-26 02:59:47 +0900
commit6ebeeff92f77060082bac1f1afa71687e1cb03dd (patch)
treec18f0c04677f58ca81415c8bb82d8924cf4aec30 /README.md
parenta98c72a313483e1a0baebe99d2534904c19faf1f (diff)
downloadjson-6ebeeff92f77060082bac1f1afa71687e1cb03dd.tar.gz
Fix some typos
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 682db2f..e020557 100644
--- a/README.md
+++ b/README.md
@@ -267,7 +267,7 @@ the `pp` library's `pp` methods.
The script `tools/server.rb` contains a small example if you want to test, how
receiving a JSON object from a webrick server in your browser with the
-javasript prototype library http://www.prototypejs.org works.
+JavaScript prototype library http://www.prototypejs.org works.
## Speed Comparisons
@@ -294,7 +294,7 @@ extension:
```
In the table above 1 is `JSON::Ext::Parser`, 2 is `YAML.load` with YAML
-compatbile JSON document, 3 is is `JSON::Pure::Parser`, and 4 is
+compatible JSON document, 3 is is `JSON::Pure::Parser`, and 4 is
`ActiveSupport::JSON.decode`. The ActiveSupport JSON-decoder converts the
input first to YAML and then uses the YAML-parser, the conversion seems to
slow it down so much that it is only as fast as the `JSON::Pure::Parser`!