diff options
author | Florian Frank <flori@ping.de> | 2011-11-10 08:44:21 +0100 |
---|---|---|
committer | Florian Frank <flori@ping.de> | 2011-11-10 08:44:21 +0100 |
commit | 70bcd0f0ebef2808aa65d59ac77560a6fff6e5c5 (patch) | |
tree | dc294758ebaa97ab387f96ef5faf1c3f514a249d /lib | |
parent | 1239442670908599655dda950a959123bce09485 (diff) | |
download | json-70bcd0f0ebef2808aa65d59ac77560a6fff6e5c5.tar.gz |
change documentation
Diffstat (limited to 'lib')
-rw-r--r-- | lib/json/pure/generator.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/json/pure/generator.rb b/lib/json/pure/generator.rb index 9c776a1..baa94d8 100644 --- a/lib/json/pure/generator.rb +++ b/lib/json/pure/generator.rb @@ -173,15 +173,15 @@ module JSON # it's disabled. attr_accessor :quirks_mode - # XXX + # :stopdoc: attr_reader :buffer_initial_length - # XXX def buffer_initial_length=(length) if length > 0 @buffer_initial_length = length end end + # :startdoc: # This integer returns the current depth data structure nesting in the # generated JSON. |