diff options
-rw-r--r-- | Doc/library/functions.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index f70cc36..03525ca 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): |