diff --git a/README.md b/README.md index d1c38fd..ead45bb 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ the most basic usage I could come up with goes something like: ```javascript var mws = require('mws'), - client = new AmazonMwsClient('accessKeyId', 'secretAccessKey', 'merchantId', {}); + client = new mws.Client('accessKeyId', 'secretAccessKey', 'merchantId', {}); // Get the service status of Sellers API endpoint and print it client.invoke(new mws.sellers.requests.GetServiceStatus(), console.log); @@ -33,4 +33,4 @@ client.invoke(listOrders, function(result) { console.log(result); // Do something fun with the results... }); -``` \ No newline at end of file +```