Skip to content

Commit

Permalink
Dereference.
Browse files Browse the repository at this point in the history
  • Loading branch information
kammerchorinnsbruck committed Apr 24, 2024
1 parent ec1c4b8 commit 87faf8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dedukti-parse/src/cmd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ impl<Ty, Tm> Intro<Ty, Tm> {
/// Only constants that are injective or introduced by definitions are rewritable.
pub fn rewritable(&self) -> bool {
match self {
Self::Declaration(inj, _) => inj,
Self::Declaration(inj, _) => *inj,
Self::Definition(..) => true,
Self::Theorem(..) => false,
}
Expand Down

0 comments on commit 87faf8a

Please sign in to comment.