From 5581c0a0edd69e8248d6fc5bd06dabd08319a337 Mon Sep 17 00:00:00 2001 From: Reece Dunham Date: Mon, 28 Jan 2019 22:54:23 -0500 Subject: [PATCH] Update some info in md-link-checks (#8757) --- test/common/markdown/markdown-link.tests.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/common/markdown/markdown-link.tests.ps1 b/test/common/markdown/markdown-link.tests.ps1 index cc1e0e9a2..c13915608 100644 --- a/test/common/markdown/markdown-link.tests.ps1 +++ b/test/common/markdown/markdown-link.tests.ps1 @@ -96,7 +96,7 @@ Describe "Verify Markdown Links" { $prefix = $url.Substring(0,7) - # Logging for diagnosability. AzDevOps sometimes redacts the full url. + # Logging for diagnosability. Azure DevOps sometimes redacts the full url. Write-Verbose "prefix: '$prefix'" -Verbose if($url -match '^http(s)?:') { @@ -106,11 +106,11 @@ Describe "Verify Markdown Links" { } catch { - throw "retry of url failed with error: $($_.Message)" + throw "retry of URL failed with error: $($_.Message)" } } else { - throw "Tool reported Url as unreachable." + throw "Tool reported URL as unreachable." } } }