diff options
author | Martin Fischer <martin@push-f.com> | 2023-08-18 14:36:21 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-08-19 13:41:55 +0200 |
commit | fba3706e29d049e05da36d522b25cc8fc75d689a (patch) | |
tree | 7b29c7cce79cd40878945c044b82ca620471c57d /src/error.rs | |
parent | 11316f041985345dd3a712d14bea749790f937a4 (diff) |
chore: use link reference definitions in Markdown
Diffstat (limited to 'src/error.rs')
-rw-r--r-- | src/error.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/error.rs b/src/error.rs index 4ff9dfd..401937b 100644 --- a/src/error.rs +++ b/src/error.rs @@ -2,7 +2,9 @@ macro_rules! impl_error { ($( $string:literal <=> $variant:ident, )*) => { - /// All [parsing errors](https://html.spec.whatwg.org/#parse-errors) this tokenizer can emit. + /// All [parse errors] this tokenizer can emit. + /// + /// [parse errors]: https://html.spec.whatwg.org/#parse-errors #[derive(Debug, Eq, PartialEq)] pub enum Error { $( |