this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: make function comment match function name (#995)

make function comment match function name

authored by

bnewbold and committed by
GitHub
4873acee 21a5ded3

+2 -2
+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 {