diff options
author | Martin Fischer <martin@push-f.com> | 2023-08-16 08:08:10 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-08-19 06:41:55 +0200 |
commit | 62746da74a410195fdd36492eb15ca2d95531993 (patch) | |
tree | 7a9c2a9cee0a6e5e394367a9697d6cfb417071e6 | |
parent | 1733b9303149251d93ab7a04d5981e06d0aff310 (diff) |
fix(docs): StartTag is a start tag
-rw-r--r-- | src/emitter.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emitter.rs b/src/emitter.rs index 5a6a72e..1ab0e60 100644 --- a/src/emitter.rs +++ b/src/emitter.rs @@ -466,7 +466,7 @@ impl<R, S: Span<R>> Emitter<R> for DefaultEmitter<R, S> { } } -/// A HTML end/close tag, such as `<p>` or `<a>`. +/// An HTML start tag, such as `<p>` or `<a>`. #[derive(Debug, Default, Eq, PartialEq)] pub struct StartTag<S> { /// Whether this tag is self-closing. If it is self-closing, no following [`EndTag`] should be |