Issue 2648: Add leading zero to money format recipe in the docs.
diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst
index a79272f..a792f41 100644
--- a/Doc/library/decimal.rst
+++ b/Doc/library/decimal.rst
@@ -1426,7 +1426,7 @@
        >>> moneyfmt(Decimal(123456789), sep=' ')
        '123 456 789.00'
        >>> moneyfmt(Decimal('-0.02'), neg='<', trailneg='>')
-       '<.02>'
+       '<0.02>'
 
        """
        q = Decimal(10) ** -places      # 2 places --> '0.01'
@@ -1439,6 +1439,8 @@
        for i in range(places):
            build(next() if digits else '0')
        build(dp)
+       if not digits:
+           build('0')
        i = 0
        while digits:
            build(next())