From 98ef16317b8a24f525bbb8db23926b07c734468e Mon Sep 17 00:00:00 2001 From: Ethan Pailes Date: Tue, 31 Oct 2017 07:39:43 -0400 Subject: [PATCH] update a the ByteInput comment 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. --- src/input.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/input.rs b/src/input.rs index ebf390a1c1..87bf72d72f 100644 --- a/src/input.rs +++ b/src/input.rs @@ -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],