diff --git a/doc/v2/def_visitor.html b/doc/v2/def_visitor.html
index 91361a25..644830f0 100644
--- a/doc/v2/def_visitor.html
+++ b/doc/v2/def_visitor.html
@@ -120,8 +120,9 @@ void visit(classT& c, char const* name, OptionalArgs const& options) con
being wrapped to Python. name is a client supplied name. This is a client
supplied function.
Effects: A call to c.def(name, visitor) or c.def(name, visitor, options),
- where c is a class_ instance and visitor is a def_visitor derived class forwards
- to this visitor's visit member function.
+ where c is a class_ instance, visitor is a def_visitor derived class and options
+ are context specific optional arguments, forwards to this visitor's visit
+ member function.
Rationale: Allows my_def_visitor to non-intrusively add functionality
to the class_ def member function.