diff --git a/doc/overriding.html b/doc/overriding.html
index 66c3610c..af458d79 100644
--- a/doc/overriding.html
+++ b/doc/overriding.html
@@ -82,8 +82,8 @@ struct hello_callback : hello
{ return boost::python::callback<std::string>::call_method(self, "greet"); }
// Supplies the default implementation of greet
- static std::string default_greet(const hello& self) const // 5
- { return self.hello::greet(); }
+ static std::string default_greet(const hello& self_) const // 5
+ { return self_.hello::greet(); }
private:
PyObject* self; // 1
};