fork of indigo with slightly nicer lexgen

chore: make function comment match function name

Signed-off-by: pudongair <744355276@qq.com>

pudongair 8f9ab22f 21a5ded3

Changed files
+2 -2
search
+1 -1
search/indexing.go
··· 480 480 return nil 481 481 } 482 482 483 - // updateProfilePagranks uses the OpenSearch bulk API to update the pageranks for the given DIDs 483 + // indexPageranks uses the OpenSearch bulk API to update the pageranks for the given DIDs 484 484 func (idx *Indexer) indexPageranks(ctx context.Context, pageranks []*PagerankIndexJob) error { 485 485 ctx, span := tracer.Start(ctx, "indexPageranks") 486 486 defer span.End()
+1 -1
search/parse_query.go
··· 10 10 "github.com/bluesky-social/indigo/atproto/syntax" 11 11 ) 12 12 13 - // ParseQuery takes a query string and pulls out some facet patterns ("from:handle.net") as filters 13 + // ParsePostQuery takes a query string and pulls out some facet patterns ("from:handle.net") as filters 14 14 func ParsePostQuery(ctx context.Context, dir identity.Directory, raw string, viewer *syntax.DID) PostSearchParams { 15 15 quoted := false 16 16 parts := strings.FieldsFunc(raw, func(r rune) bool {