Skip to content

Commit

Permalink
corrected typo in documentation, Fixes #9
Browse files Browse the repository at this point in the history
  • Loading branch information
framingeinstein committed Jan 22, 2015
1 parent 5c16f60 commit b09122d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,11 @@ Taxonomy
---------------
var AlchemyAPI = require('alchemy-api');
var alchemy = new AlchemyAPI('<YOUR API KEY>');
alchemy.taxonomy('<URL|HTML|TEXT>', {}, function(err, response) {
alchemy.taxonomies('<URL|HTML|TEXT>', {}, 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
});
Expand Down

0 comments on commit b09122d

Please sign in to comment.