Skip to content

Commit

Permalink
removed debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
jofas committed Mar 16, 2022
1 parent 762a1f6 commit 15569e7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

* [x] documentation: top-level

* [ ] documentation: exported artefacts
* [x] documentation: exported artefacts

* [x] support for single quotes

Expand Down
2 changes: 0 additions & 2 deletions src/lexer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,6 @@ impl<'input> Iterator for Lexer<'input> {
fn next(&mut self) -> Option<Self::Item> {
match self.token_stream.next() {
Some((token, span)) => {
// TODO: remove
println!("token: {:?}", token);
match token {
Token::Error => Some(Err(ParseError)),
_ => Some(Ok((span.start, token, span.end))),
Expand Down

0 comments on commit 15569e7

Please sign in to comment.