summaryrefslogtreecommitdiff
path: root/predict_set.go
diff options
context:
space:
mode:
Diffstat (limited to 'predict_set.go')
-rw-r--r--predict_set.go12
1 files changed, 0 insertions, 12 deletions
diff --git a/predict_set.go b/predict_set.go
deleted file mode 100644
index fa4a34a..0000000
--- a/predict_set.go
+++ /dev/null
@@ -1,12 +0,0 @@
-package complete
-
-// PredictSet expects specific set of terms, given in the options argument.
-func PredictSet(options ...string) Predictor {
- return predictSet(options)
-}
-
-type predictSet []string
-
-func (p predictSet) Predict(a Args) []string {
- return p
-}