Bang -> bang

This commit is contained in:
Wilson Lin 2020-07-27 18:09:49 +10:00
parent e5245acc31
commit 2eb1bea077
1 changed files with 1 additions and 1 deletions

View File

@ -6,6 +6,6 @@ use crate::proc::Processor;
#[inline(always)]
pub fn process_bang(proc: &mut Processor) -> ProcessingResult<()> {
proc.m(IsSeq(b"<!"), Keep).expect();
proc.m(ThroughChar(b'>'), Keep).require("Bang close")?;
proc.m(ThroughChar(b'>'), Keep).require("bang close")?;
Ok(())
}