Remove stray comment

This commit is contained in:
Casey Rodarmor 2016-10-28 00:14:50 -07:00
parent 44334ff093
commit 1d74432dd1

View file

@ -938,8 +938,6 @@ fn tokenize(text: &str) -> Result<Vec<Token>, Error> {
if contents.is_empty() {
return error!(ErrorKind::UnterminatedString);
}
// die on \n or \r
// stop on unescaped "
let mut len = 0;
let mut escape = false;
for c in contents.chars() {