Skip to content

Commit

Permalink
Change order of variants, group text variants together
Browse files Browse the repository at this point in the history
  • Loading branch information
Mingun committed Jun 12, 2023
1 parent 621da10 commit 70f4a9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/events/mod.rs
Expand Up @@ -963,10 +963,10 @@ pub enum Event<'a> {
Empty(BytesStart<'a>),
/// Escaped character data between tags.
Text(BytesText<'a>),
/// Comment `<!-- ... -->`.
Comment(BytesText<'a>),
/// Unescaped character data stored in `<![CDATA[...]]>`.
CData(BytesCData<'a>),
/// Comment `<!-- ... -->`.
Comment(BytesText<'a>),
/// XML declaration `<?xml ...?>`.
Decl(BytesDecl<'a>),
/// Processing instruction `<?...?>`.
Expand Down

0 comments on commit 70f4a9c

Please sign in to comment.