aboutsummaryrefslogtreecommitdiff
path: root/src/error.rs
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2023-08-18 14:36:21 +0200
committerMartin Fischer <martin@push-f.com>2023-08-19 13:41:55 +0200
commitfba3706e29d049e05da36d522b25cc8fc75d689a (patch)
tree7b29c7cce79cd40878945c044b82ca620471c57d /src/error.rs
parent11316f041985345dd3a712d14bea749790f937a4 (diff)
chore: use link reference definitions in Markdown
Diffstat (limited to 'src/error.rs')
-rw-r--r--src/error.rs4
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 {
$(