From 9e52c57e80696c28246f5e40d924e7aea904d5e9 Mon Sep 17 00:00:00 2001 From: Daniel Shiffman Date: Sat, 21 Nov 2015 17:55:34 -0500 Subject: [PATCH] exports.Spellcheck missing I am working on an example demonstrating the Spellcheck functionality and noticed that the exports was missing from this file. If this is not correct, please close and ignore! --- lib/natural/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/natural/index.js b/lib/natural/index.js index 12c7fba1e..66a5b988d 100644 --- a/lib/natural/index.js +++ b/lib/natural/index.js @@ -65,6 +65,7 @@ exports.Trie = require('./trie/trie'); exports.SentenceAnalyzer = require('./analyzers/sentence_analyzer'); exports.stopwords = require('./util/stopwords').words; exports.ShortestPathTree = require('./util/shortest_path_tree'); +exports.Spellcheck = require('./spellcheck/spellcheck'); exports.LongestPathTree = require('./util/longest_path_tree'); exports.EdgeWeightedDigraph = require('./util/edge_weighted_digraph'); exports.NGrams = require('./ngrams/ngrams');