diff --git a/src/storage/prism.cpp b/src/storage/prism.cpp index 6365911..c8b24e1 100644 --- a/src/storage/prism.cpp +++ b/src/storage/prism.cpp @@ -97,7 +97,7 @@ void define_prism(py::module& m) { ; - py::class_> constant(m, "Constant", "A constant in a Prism program"); + py::class_> constant(m, "PrismConstant", "A constant in a Prism program"); constant.def_property_readonly("name", &Constant::getName, "Constant name") .def_property_readonly("defined", &Constant::isDefined, "Is the constant defined?") .def_property_readonly("type", &Constant::getType, "The type of the constant")