blakew opened a new issue #67: Documentation for atomic method is wrong URL: https://github.com/apache/couchdb-nano/issues/67 ```atomic``` documentation refers to request.form directly. Instead the method stringifies the object in req.body. So in your update handler, you need to insert: ``` var body = JSON.parse(req.body); ``` In addition to this issue with the docs is there any particular reason why the object body is stringified? Thanks
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
