Skip to content

Commit

Permalink
Fix a broken after #658 private doc references
Browse files Browse the repository at this point in the history
  • Loading branch information
Mingun committed Sep 30, 2023
1 parent 9b90184 commit 1e19a45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/reader/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ macro_rules! read_event_impl {
}

/// Read bytes up to `<` and skip it. If current byte (after skipping all space
/// characters if [`Parser::trim_text_start`] is `true`) is already `<`, then
/// characters if [`ReaderState::trim_text_start`] is `true`) is already `<`, then
/// returns the next event, otherwise stay at position just after the `<` symbol.
///
/// Moves parser to the `OpenedTag` state.
Expand Down Expand Up @@ -409,7 +409,7 @@ enum ParseState {
/// [`Event::Start`] event. The next event emitted will be an [`Event::End`],
/// after which reader returned to the `ClosedTag` state.
///
/// [`expand_empty_elements`]: Parser::expand_empty_elements
/// [`expand_empty_elements`]: ReaderState::expand_empty_elements
Empty,
/// Reader enters this state when `Eof` event generated or an error occurred.
/// This is the last state, the reader stay in it forever.
Expand Down

0 comments on commit 1e19a45

Please sign in to comment.