summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/bad-escape-suggest-raw-string.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/parser/bad-escape-suggest-raw-string.rs')
-rw-r--r--tests/ui/parser/bad-escape-suggest-raw-string.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/parser/bad-escape-suggest-raw-string.rs b/tests/ui/parser/bad-escape-suggest-raw-string.rs
index 978b92cbc..06df82d28 100644
--- a/tests/ui/parser/bad-escape-suggest-raw-string.rs
+++ b/tests/ui/parser/bad-escape-suggest-raw-string.rs
@@ -2,6 +2,6 @@ fn main() {
let ok = r"ab\[c";
let bad = "ab\[c";
//~^ ERROR unknown character escape: `[`
- //~| HELP for more information, visit <https://static.rust-lang.org/doc/master/reference.html#literals>
+ //~| HELP for more information, visit <https://doc.rust-lang.org/reference/tokens.html#literals>
//~| HELP if you meant to write a literal backslash (perhaps escaping in a regular expression), consider a raw string literal
}