Skip to content

Commit

Permalink
Fixed broken link in strings escape code error message
Browse files Browse the repository at this point in the history
  • Loading branch information
bramvbilsen authored and lpil committed Mar 11, 2024
1 parent f125b96 commit 7eaad19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler-core/src/parse/error.rs
Expand Up @@ -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 => {
Expand Down

0 comments on commit 7eaad19

Please sign in to comment.