diff --git a/fast_pauli/cpp/src/fast_pauli.cpp b/fast_pauli/cpp/src/fast_pauli.cpp index 5c4fa40..86b4d1e 100644 --- a/fast_pauli/cpp/src/fast_pauli.cpp +++ b/fast_pauli/cpp/src/fast_pauli.cpp @@ -755,10 +755,10 @@ dedupe : bool "int: The number of PauliString terms in PauliOp") .def_prop_ro( "coeffs", [](fp::PauliOp const &self) { return self.coeffs; }, - "List[complex]: Ordered list of coefficients corresponding to Pauli strings") + "List[complex]: The list of coefficients corresponding to Pauli strings") .def_prop_ro( "pauli_strings", [](fp::PauliOp const &self) { return self.pauli_strings; }, - "List[PauliString]: Ordered list of PauliString objects in PauliOp") + "List[PauliString]: The list of PauliString objects corresponding to coefficients in PauliOp") .def_prop_ro( "pauli_strings_as_str", [](fp::PauliOp const &self) { @@ -768,7 +768,7 @@ dedupe : bool [](fp::PauliString const &ps) { return fmt::format("{}", ps); }); return strings; }, - "List[str]: Ordered list of Pauli Strings representations from PauliOp") + "List[str]: The list of PauliString representations corresponding to coefficients in PauliOp") // Methods .def(