Skip to content

Commit

Permalink
Slightly simplify parsing terms example
Browse files Browse the repository at this point in the history
  • Loading branch information
Gawdl3y committed Mar 18, 2024
1 parent 681258b commit a2eb0ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
//! Box::new(Term::Dice(
//! Dice::builder().count(6).sides(8).explode(None, true).build()
//! )),
//! Box::new(Term::Dice(Dice::builder().count(4).sides(6).build())),
//! Box::new(Term::Dice(Dice::new(4, 6))),
//! )),
//! Box::new(Term::Num(3)),
//! )
Expand Down

0 comments on commit a2eb0ff

Please sign in to comment.