From 6e176cd7a2e19c3596c2ad530a0ada3f791f5eac Mon Sep 17 00:00:00 2001 From: Andrea Terzolo Date: Sat, 19 Oct 2024 16:11:04 +0200 Subject: [PATCH] update(tools): fix spellcheck using inline code blocks Co-authored-by: Dylan Reimerink <97.dylan@gmail.com> --- tools/feature-gen/timeline.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/feature-gen/timeline.go b/tools/feature-gen/timeline.go index 0cf2666..7fd8757 100644 --- a/tools/feature-gen/timeline.go +++ b/tools/feature-gen/timeline.go @@ -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) } }