diff --git a/doc/tutorial/doc/enums.html b/doc/tutorial/doc/enums.html index c42f1820..7eec613e 100644 --- a/doc/tutorial/doc/enums.html +++ b/doc/tutorial/doc/enums.html @@ -43,7 +43,7 @@ the construct:

;

-can be used to expose it Python. The new enum type is created in the +can be used to expose to Python. The new enum type is created in the current scope(), which is usually the current module. The snippet above creates a Python class derived from Python's int type which is associated with the C++ type passed as its first parameter.

@@ -54,7 +54,7 @@ associated with the C++ type passed as its first parameter.

associated global Python object which controls the Python namespace in which new extension classes and wrapped functions will be defined as attributes. Details can be found -here +here.

@@ -64,8 +64,8 @@ You can access those values in Python as

my_module.choice.red

-where my_module is the module where the enum is declared. You can create a -new scope around a class:

+where my_module is the module where the enum is declared. You can also +create a new scope around a class:

     scope in_X(class_<X>("X")
                     .def( ... )