diff --git a/docs/user_guide.md b/docs/user_guide.md index 2ceb13eb..95f57b3e 100644 --- a/docs/user_guide.md +++ b/docs/user_guide.md @@ -591,10 +591,10 @@ For Example: ```c++ class MyFixture : public benchmark::Fixture { public: - void SetUp(const ::benchmark::State& state) { + void SetUp(::benchmark::State& state) { } - void TearDown(const ::benchmark::State& state) { + void TearDown(::benchmark::State& state) { } };