Skip to content

Commit

Permalink
update a the ByteInput comment
Browse files Browse the repository at this point in the history
At some ByteInput switched to being backed by actual bytes
rather than a string. This commit just removes the dangling
reference to the old representation.
  • Loading branch information
Ethan Pailes committed Oct 31, 2017
1 parent 7c4f144 commit 98ef163
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/input.rs
Original file line number Diff line number Diff line change
Expand Up @@ -223,10 +223,6 @@ impl<'t> Input for CharInput<'t> {
}

/// An input reader over bytes.
///
/// N.B. We represent the reader with a string for now, since that gives us
/// easy access to necessary Unicode decoding (used for word boundary look
/// ahead/look behind).
#[derive(Clone, Copy, Debug)]
pub struct ByteInput<'t> {
text: &'t [u8],
Expand Down

0 comments on commit 98ef163

Please sign in to comment.