diff options
Diffstat (limited to 'src/machine.rs')
-rw-r--r-- | src/machine.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/machine.rs b/src/machine.rs index 6d4dc10..fd4b36b 100644 --- a/src/machine.rs +++ b/src/machine.rs @@ -13,8 +13,6 @@ pub enum ControlToken { CdataOpen, } -// Note: This is not implemented as a method on Tokenizer because there's fields on Tokenizer that -// should not be available in this method, such as Tokenizer.to_reconsume or the Reader instance #[inline] pub fn consume<O, R, E>(slf: &mut Tokenizer<R, O, E>) -> Result<ControlToken, R::Error> where |