Remove comment at wrong position

This commit is contained in:
jr 2018-06-21 00:16:46 +02:00
parent 567973afd0
commit 0e6611928a

View File

@ -238,6 +238,7 @@ impl NFA {
self.push_edge(s0, Other, reject);
Ok(s0)
},
//Bytes are not supported
Class::Bytes(_) => Err(NFAConstructionError::ByteRegex),
}
@ -338,8 +339,7 @@ impl NFA {
self.push_edge(s0, Noop, target);
}
Ok(s0)
} // If we ever support byte regexs, these
// can be merged in with the cases above.
}
}
}