We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41f9662 commit 9069b4cCopy full SHA for 9069b4c
til.go
@@ -438,7 +438,7 @@ func buildTagPages(pages []*Page) *TagMap {
438
for _, tagName := range tagMap.SortedTagNames() {
439
wGroup.Add(1)
440
441
- go func(tagName string, ll *log.Logger) {
+ go func(tagName string) {
442
defer wGroup.Done()
443
444
content := fmt.Sprintf("## %s\n\n", tagName)
@@ -469,7 +469,7 @@ func buildTagPages(pages []*Page) *TagMap {
469
}
470
471
Progress(filePath)
472
- }(tagName, ll)
+ }(tagName)
473
474
475
wGroup.Wait()
0 commit comments