From f1deaf16b81ff2ead7a9df8c6fdaf5b54489d655 Mon Sep 17 00:00:00 2001 From: Dominic Hamon Date: Fri, 9 Apr 2021 13:00:43 +0100 Subject: [PATCH] fix minor typo (though this is an external property) --- bindings/python/google_benchmark/benchmark.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/google_benchmark/benchmark.cc b/bindings/python/google_benchmark/benchmark.cc index d80816e5..1b01fe7f 100644 --- a/bindings/python/google_benchmark/benchmark.cc +++ b/bindings/python/google_benchmark/benchmark.cc @@ -157,7 +157,7 @@ PYBIND11_MODULE(_benchmark, m) { .def("pause_timing", &State::PauseTiming) .def("resume_timing", &State::ResumeTiming) .def("skip_with_error", &State::SkipWithError) - .def_property_readonly("error_occured", &State::error_occurred) + .def_property_readonly("error_occurred", &State::error_occurred) .def("set_iteration_time", &State::SetIterationTime) .def_property("bytes_processed", &State::bytes_processed, &State::SetBytesProcessed)