Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
enricozb committed Apr 11, 2024
1 parent 2144bfd commit cf1f252
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -308,8 +308,8 @@ impl<'i> Parser<'i> {
let nam = self.parse_name()?;
Ok(Tree::Ref { nam })
}
// Int = "#" Int
// F32 = "#" Int "." Int
// Int = "#" [-] Int
// F32 = "#" [-] ( Int "." Int | "NaN" | "inf" )
Some('#') => {
self.advance_char();
let is_neg = self.consume("-").is_ok();
Expand Down

0 comments on commit cf1f252

Please sign in to comment.