From 77de417b6c27884d220540e93c1aae4263da0b06 Mon Sep 17 00:00:00 2001 From: Florian Frank Date: Mon, 7 Dec 2009 18:58:02 +0100 Subject: [PATCH] avoid rdoc issue, thx to github user spier. --- README | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README b/README index 2dd55e2d9..c7cfefc8e 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