Merge pull request #243 from pcolazurdo/patch-1

Fixed db.view_with_list documentation
diff --git a/README.md b/README.md
index c29dc77..1b38038 100644
--- a/README.md
+++ b/README.md
@@ -600,12 +600,12 @@
 });
 ```
 
-### db.view_with_list(designname, viewname, listname, [params], [callback])
+### db.viewWithList(designname, viewname, listname, [params], [callback])
 
 calls a list function feeded by the given view of the specified design document.
 
 ``` js
-alice.view_with_list('characters', 'crazy_ones', 'my_list', function(err, body) {
+alice.viewWithList('characters', 'crazy_ones', 'my_list', function(err, body) {
   if (!err) {
     console.log(body);
   }