xissy / node-stanford-simple-nlp

A simple node.js wrapper for stanford-core-nlp.
Other
148 stars 44 forks source link

Doc issues #4

Closed silentrob closed 10 years ago

silentrob commented 10 years ago
  1. Readme

    var options = { annotators: ['tokenize', 'ssplit', 'pos', 'lemma', 'ner', 'parse' 'dcoref'] };

Should be

var options = {
  annotators: ['tokenize', 'ssplit', 'pos', 'lemma', 'ner', 'parse', 'dcoref']
};
  1. jar folder should say to move the JAR files in, not just unzip the archive into the jar folder.
xissy commented 10 years ago

Done. Thanks! ae70903bf77efa9c401df7a3527dca1b7002bdad

TuningGuide commented 8 years ago

This somehow did not made it into the readme of master branch.