summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Frank <flori@ping.de>2016-07-29 15:37:58 +0200
committerGitHub <noreply@github.com>2016-07-29 15:37:58 +0200
commit7347860b1dc3bcb0d68c1ee7e6207cd7ea97b806 (patch)
tree6b0e0b62d22c98811ca31c391dad4ee897a01ad8
parent899f4969496ea74ef82121df6c8affdf163eb623 (diff)
parentcb5cbae950982cf2a34b3c50de0a14ccfc2c1790 (diff)
downloadjson-7347860b1dc3bcb0d68c1ee7e6207cd7ea97b806.tar.gz
Merge pull request #300 from kAworu/patch-1
README.md typo fix
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index d5ff32d..f9cd95d 100644
--- a/README.md
+++ b/README.md
@@ -115,7 +115,7 @@ generate a JSON document from an array or hash:
```ruby
document = JSON 'test' => 23 # => "{\"test\":23}"
-document = JSON['test'] => 23 # => "{\"test\":23}"
+document = JSON['test' => 23] # => "{\"test\":23}"
```
and