updated docstring on __bool__ to match behavior
diff --git a/Lib/decimal.py b/Lib/decimal.py
index 4557e6a..2f2a617 100644
--- a/Lib/decimal.py
+++ b/Lib/decimal.py
@@ -634,10 +634,10 @@
         return 0
 
     def __bool__(self):
-        """Is the number non-zero?
+        """return True if the number is non-zero.
 
-        0 if self == 0
-        1 if self != 0
+        False if self == 0
+        True if self != 0
         """
         if self._is_special:
             return True