Skip to content

Commit 4c0a015

Browse files
authored
.github: fix quoting in docs check error message (#568)
See https://github.com/modelcontextprotocol/go-sdk/actions/runs/18410542710/job/52464273952?pr=567 Apparently, back-ticked code snippets are not rendered, leading to non-sensical suggestions from the docs check failure. Remove back-ticks for now.
1 parent 770dbdf commit 4c0a015

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/docs-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
if [ -n "$(git status --porcelain)" ]; then
2626
echo "ERROR: docs are not up-to-date!"
2727
echo ""
28-
echo "The docs differ from what would be generated by `go generate ./...`."
28+
echo "The docs differ from what would be generated by go generate ./..."
2929
echo "Please update internal/**/*.src.md instead of directly editing README.md or docs/ files,"
30-
echo "then run `go generate ./...` to regenerate docs."
30+
echo "then run go generate ./... to regenerate docs."
3131
echo ""
3232
echo "Changes:"
3333
git status --porcelain

0 commit comments

Comments
 (0)