fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

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

gofmt -w contentprovider.go

+2 -2
+2 -2
contentprovider.go
··· 781 781 782 782 for i := 0; i < len(ms); i++ { 783 783 rrfScore[i] = 1 / (k + float64(i)) 784 - if opts.DebugScore { 784 + if opts.DebugScore { 785 785 ms[i].Debug += fmt.Sprintf("(%d,", i) 786 786 } 787 787 } ··· 793 793 794 794 for i := range rrfScore { 795 795 rrfScore[i] += 1 / (k + float64(i)) 796 - if opts.DebugScore { 796 + if opts.DebugScore { 797 797 ms[i].Debug += fmt.Sprintf("%d), ", i) 798 798 } 799 799 }