From b09122d8785b98795434cececed7d0eb55d67c57 Mon Sep 17 00:00:00 2001 From: Jason Morgan Date: Thu, 22 Jan 2015 13:24:41 -0500 Subject: [PATCH] corrected typo in documentation, Fixes #9 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3e97530..f6a4212 100644 --- a/README.md +++ b/README.md @@ -100,11 +100,11 @@ Taxonomy --------------- var AlchemyAPI = require('alchemy-api'); var alchemy = new AlchemyAPI(''); - alchemy.taxonomy('', {}, function(err, response) { + alchemy.taxonomies('', {}, function(err, response) { if (err) throw err; // See http://www.alchemyapi.com/api/taxonomy_calls/html.html for format of returned object - var taxonomy = response.taxonomy; + var taxonomies = response.taxonomies; // Do something with data });