diff --git a/doc/source/usage.rst b/doc/source/usage.rst index f4f6ffa..35b2541 100644 --- a/doc/source/usage.rst +++ b/doc/source/usage.rst @@ -236,8 +236,8 @@ decorator. For example: assert SpecializedEnum.TWO.method() == 'method_two()' assert SpecializedEnum.THREE.method() == 'method_three()' -The :py:meth:`~enum_properties.specialize` decorator works on @classmethods and @staticmethods as well, -but it must be the outermost decorator. +The :py:meth:`~enum_properties.specialize` decorator works on @classmethods and +@staticmethods as well, but it must be the outermost decorator. The undecorated method will apply to all members that lack a specialization: