summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/blevesearch/bleve/search/search.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/blevesearch/bleve/search/search.go')
-rw-r--r--vendor/github.com/blevesearch/bleve/search/search.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/vendor/github.com/blevesearch/bleve/search/search.go b/vendor/github.com/blevesearch/bleve/search/search.go
index cbbcfbfd66..f9a92783b7 100644
--- a/vendor/github.com/blevesearch/bleve/search/search.go
+++ b/vendor/github.com/blevesearch/bleve/search/search.go
@@ -37,12 +37,12 @@ func (ap ArrayPositions) Equals(other ArrayPositions) bool {
type Location struct {
// Pos is the position of the term within the field, starting at 1
- Pos uint64 `json:"pos"`
-
+ Pos uint64 `json:"pos"`
+
// Start and End are the byte offsets of the term in the field
- Start uint64 `json:"start"`
- End uint64 `json:"end"`
-
+ Start uint64 `json:"start"`
+ End uint64 `json:"end"`
+
// ArrayPositions contains the positions of the term within any elements.
ArrayPositions ArrayPositions `json:"array_positions"`
}