Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/character/complete.rs
Original file line number Diff line number Diff line change
Expand Up @@ -269,8 +269,7 @@ where
char('\t')(input)
}

/// Matches one byte as a character. Note that the input type will
/// accept a `str`, but not a `&[u8]`, unlike many other nom parsers.
/// Matches one byte as a character.
///
/// *Complete version*: Will return an error if there's not enough input data.
/// # Example
Expand Down
3 changes: 1 addition & 2 deletions src/character/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -251,8 +251,7 @@ where
}
}

// Matches one byte as a character. Note that the input type will
/// accept a `str`, but not a `&[u8]`, unlike many other nom parsers.
/// Matches one byte as a character.
///
/// # Example
///
Expand Down