From 7eaad191566107784495ba41a4550f1bdf618311 Mon Sep 17 00:00:00 2001 From: Bram Vanbilsen Date: Mon, 11 Mar 2024 11:00:24 -0600 Subject: [PATCH] Fixed broken link in strings escape code error message --- compiler-core/src/parse/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-core/src/parse/error.rs b/compiler-core/src/parse/error.rs index 4f079ef1191..e08399e9f31 100644 --- a/compiler-core/src/parse/error.rs +++ b/compiler-core/src/parse/error.rs @@ -279,7 +279,7 @@ impl LexicalError { "I don't understand this escape code", vec![ "Hint: Add another backslash before it.".into(), - "See: https://gleam.run/book/tour/strings.html#escape-sequences".into(), + "See: https://tour.gleam.run/basics/strings".into(), ], ), LexicalErrorType::DigitOutOfRadix => {