Fix SF bug #766288, property() example gives syntax error
diff --git a/Doc/lib/libfuncs.tex b/Doc/lib/libfuncs.tex
index 6b61d36..b9dc4e1 100644
--- a/Doc/lib/libfuncs.tex
+++ b/Doc/lib/libfuncs.tex
@@ -747,7 +747,7 @@
     def getx(self): return self.__x
     def setx(self, value): self.__x = value
     def delx(self): del self.__x
-        x = property(getx, setx, delx, "I'm the 'x' property.")
+    x = property(getx, setx, delx, "I'm the 'x' property.")
 \end{verbatim}
 
   \versionadded{2.2}