Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'related/inverted_index.go')
-rw-r--r--related/inverted_index.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/related/inverted_index.go b/related/inverted_index.go
index 4f0dba7d6..309eb4097 100644
--- a/related/inverted_index.go
+++ b/related/inverted_index.go
@@ -73,6 +73,7 @@ type Config struct {
Indices IndexConfigs
}
+// Add adds a given index.
func (c *Config) Add(index IndexConfig) {
if c.ToLower {
index.ToLower = true
@@ -252,6 +253,7 @@ func (idx *InvertedIndex) SearchDoc(doc Document, indices ...string) ([]Document
return idx.searchDate(doc.PubDate(), q...)
}
+// ToKeywords returns a Keyword slice of the given input.
func (cfg IndexConfig) ToKeywords(v interface{}) ([]Keyword, error) {
var (
keywords []Keyword
@@ -279,7 +281,7 @@ func (cfg IndexConfig) ToKeywords(v interface{}) ([]Keyword, error) {
case nil:
return keywords, nil
default:
- return keywords, fmt.Errorf("indexing currently not supported for for index %q and type %T", cfg.Name, vv)
+ return keywords, fmt.Errorf("indexing currently not supported for index %q and type %T", cfg.Name, vv)
}
return keywords, nil