spelling: overridden

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2024-01-01 22:42:44 -05:00
parent 116a5b3d89
commit 8f39b89759

View File

@ -84,7 +84,7 @@ class Primitive {
/** Print the primitive. */
virtual void print(std::ostream& os) = 0;
/** Equivalence check defaults to false unless overriden by the primitive */
/** Equivalence check defaults to false unless overridden by the primitive */
virtual bool is_equivalent(const Primitive& other) const {
return false;
}