Remove an unnecessary return keyword.

This commit is contained in:
Nicholas Nethercote 2023-07-31 11:07:50 +10:00
parent 03a57254b5
commit f8650114bd

View File

@ -1172,7 +1172,7 @@ impl<'a> Parser<'a> {
}
i += 1;
}
return looker(&token);
looker(&token)
}
/// Returns whether any of the given keywords are `dist` tokens ahead of the current one.