From 58eb9b5aaa37b9d1decadeb2ace13f7c197bb616 Mon Sep 17 00:00:00 2001 From: craigbox Date: Tue, 23 Mar 2021 20:01:44 +0000 Subject: [PATCH] Fix lint URL (#9367) * Fix lint URL * Update lint_site.sh * no longer latest (or greatest) --- scripts/lint_site.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/lint_site.sh b/scripts/lint_site.sh index 80231dcc02..bf64db1627 100755 --- a/scripts/lint_site.sh +++ b/scripts/lint_site.sh @@ -35,7 +35,7 @@ check_content() { # check for use of ``` if grep -nr -e "\`\`\`" --include "*.md" "${DIR}"; then - echo "Ensure markdown content uses {{< text >}} for code blocks rather than \`\`\`. Please see https://istio.io/about/contribute/creating-and-editing-pages/#embedding-preformatted-blocks" + echo "Ensure markdown content uses {{< text >}} for code blocks rather than \`\`\`. Please see https://istio.io/about/contribute/code-blocks/" FAILED=1 fi @@ -63,7 +63,7 @@ check_content() { pushd "${TMP}" >/dev/null if ! find . -type f -name '*.md' -print0 | xargs -0 -r mdspell "${LANG}" --ignore-acronyms --ignore-numbers --no-suggestions --report; then - echo "To learn how to address spelling errors, please see https://istio.io/about/contribute/creating-and-editing-pages/#linting" + echo "To learn how to address spelling errors, please see https://istio.io/about/contribute/build/#test-your-changes" FAILED=1 fi