summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Frank <flori@ping.de>2009-12-07 18:58:02 +0100
committerFlorian Frank <flori@ping.de>2009-12-07 19:03:41 +0100
commit77de417b6c27884d220540e93c1aae4263da0b06 (patch)
treee2479eb496178ceaf43ef8e20c5bf78bb1b0920b
parentc87e58659b1d304e67190bdbe86580400f2514b0 (diff)
downloadjson-77de417b6c27884d220540e93c1aae4263da0b06.tar.gz
avoid rdoc issue, thx to github user spier.v1.2.1
-rw-r--r--README6
1 files changed, 3 insertions, 3 deletions
diff --git a/README b/README
index 2dd55e2..c7cfefc 100644
--- a/README
+++ b/README
@@ -3,7 +3,7 @@
=== Description
This is a implementation of the JSON specification according to RFC 4627
-(http://www.ietf.org/rfc/rfc4627.txt). Starting from version 1.0.0 on there
+http://www.ietf.org/rfc/rfc4627.txt . Starting from version 1.0.0 on there
will be two variants available:
* A pure ruby variant, that relies on the iconv and the stringscan
@@ -11,7 +11,7 @@ will be two variants available:
* The quite a bit faster C extension variant, which is in parts implemented
in C and comes with its own unicode conversion functions and a parser
generated by the ragel state machine compiler
- (http://www.cs.queensu.ca/~thurston/ragel).
+ http://www.cs.queensu.ca/~thurston/ragel .
Both variants of the JSON generator escape all non-ASCII and control characters
with \uXXXX escape sequences, and support UTF-16 surrogate pairs in order to be
@@ -224,7 +224,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.
+javasript prototype library http://www.prototypejs.org works.
=== Speed Comparisons