diff --git a/automata/src/combinators.rs b/automata/src/combinators.rs index b06f1cc..8b85004 100644 --- a/automata/src/combinators.rs +++ b/automata/src/combinators.rs @@ -35,7 +35,7 @@ impl ops::BitOr for Nondeterministic { self.tags = unwrap!(self.tags.merge(other_tags)); match self.sort().determinize() { Ok(d) => d.generalize(), - Err(_e) => panic!("TODO: ERROR MESSAGE"), + Err(e) => panic!("{e}"), } } } @@ -119,7 +119,7 @@ impl ops::Shr for Nondeterministic { .determinize() { Ok(d) => d.generalize(), - Err(_e) => panic!("TODO: ERROR MESSAGE"), + Err(e) => panic!("{e}"), } } }