diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 3ed4ab0b364..487fadff8f4 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -908,7 +908,8 @@ available. They are listed here in alphabetical order. best explained with an example:: class C(object): - def __init__(self): self._x = None + def __init__(self): + self._x = None @property def x(self):