Skip to content

Commit

Permalink
update(tools): fix spellcheck using inline code blocks
Browse files Browse the repository at this point in the history
Co-authored-by: Dylan Reimerink <[email protected]>
  • Loading branch information
Andreagit97 and dylandreimerink authored Oct 19, 2024
1 parent f89b537 commit 6e176cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/feature-gen/timeline.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ hide: toc
for _, tag := range tags {
fmt.Fprintf(&sb, "\n## :octicons-tag-24: %s\n\n", tag)
for _, feature := range timeline[tag] {
fmt.Fprintf(&sb, "* **%s** [%s](https://github.com/torvalds/linux/commit/%s) (%s)\n", feature.Name, feature.Commit[:7], feature.Commit, feature.Type)
fmt.Fprintf(&sb, "* `%s` [%s](https://github.com/torvalds/linux/commit/%s) (%s)\n", feature.Name, feature.Commit[:7], feature.Commit, feature.Type)
}
}

Expand Down

0 comments on commit 6e176cd

Please sign in to comment.