Skip to content

Commit 1e19a45

Browse files
committed
Fix a broken after #658 private doc references
1 parent 9b90184 commit 1e19a45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/reader/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ macro_rules! read_event_impl {
213213
}
214214

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

0 commit comments

Comments
 (0)