README.rdoc in conf-0.0.3 vs README.rdoc in conf-0.0.4

- old
+ new

@@ -27,14 +27,18 @@ c = Conf.get(:child) c.nested.ruby.blocks #=> false c.single #=> "pair" c.properties.like.syntax #=> :nice - c.yet.another :value - c.yet.another #=> :value - - c.freeze - c.yet.another :changed #=> can't modify frozen config + # can't modify locked config + c.nested.ruby.block true #=> InvalidStateError + + # unlock it first + c.unlocked do + nested.ruby.block true + end + + c.nested.ruby.block #=> true == Note on Patches/Pull Requests * Fork the project.