diff options
author | Florian Frank <flori@ping.de> | 2011-08-31 02:04:55 +0200 |
---|---|---|
committer | Florian Frank <flori@ping.de> | 2011-08-31 02:22:41 +0200 |
commit | 3dab4c5a6a97fac03dacf19446b9ff2a6b397591 (patch) | |
tree | 9ddfb92c0c66aef0daaf40d57385e1e921c9a673 /ext | |
parent | 0dd975a6ea54b63adc7af4d1fd40b8f9ab95cf46 (diff) | |
download | json-3dab4c5a6a97fac03dacf19446b9ff2a6b397591.tar.gz |
Add some documentationv1.5.4
Diffstat (limited to 'ext')
-rw-r--r-- | ext/json/ext/generator/generator.c | 2 | ||||
-rw-r--r-- | ext/json/ext/parser/parser.c | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/ext/json/ext/generator/generator.c b/ext/json/ext/generator/generator.c index 9a90d5f..9ad037c 100644 --- a/ext/json/ext/generator/generator.c +++ b/ext/json/ext/generator/generator.c @@ -1001,6 +1001,8 @@ static VALUE cState_generate(VALUE self, VALUE obj) * * *allow_nan*: true if NaN, Infinity, and -Infinity should be * generated, otherwise an exception is thrown, if these values are * encountered. This options defaults to false. + * * *quirks_mode*: Enables quirks_mode for parser, that is for example + * generating single JSON values instead of documents is possible. */ static VALUE cState_initialize(int argc, VALUE *argv, VALUE self) { diff --git a/ext/json/ext/parser/parser.c b/ext/json/ext/parser/parser.c index 4ea663c..d1d14c7 100644 --- a/ext/json/ext/parser/parser.c +++ b/ext/json/ext/parser/parser.c @@ -1618,6 +1618,9 @@ static VALUE convert_encoding(VALUE source) * defaults to true. * * *object_class*: Defaults to Hash * * *array_class*: Defaults to Array + * * *quirks_mode*: Enables quirks_mode for parser, that is for example + * parsing single JSON values instead of documents is possible. + * */ static VALUE cParser_initialize(int argc, VALUE *argv, VALUE self) { |