Skip to content

Commit 8252716

Browse files
committed
Removed comments with signatures of functions
1 parent 9842c8e commit 8252716

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

docs/index.rst

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -149,27 +149,22 @@ To play with the date formatting from the console, you can use the
149149
Here some examples:
150150

151151
>>> from flask_babel import format_number
152-
>>> #format_number(number)
153152
>>> format_number(1099)
154153
'1,099'
155154

156155
>>> from flask_babel import format_decimal
157-
>>> #format_decimal(number, format=None)
158156
>>> format_decimal(1.2346)
159157
u'1.235'
160158

161159
>>> from flask_babel import format_currency
162-
>>> #format_currency(number, currency, format=None, currency_digits=True, format_type='standard')
163160
>>> format_currency(1099.98, 'USD')
164161
'$1,099.98'
165162

166163
>>> from flask_babel import format_percent
167-
>>> #format_percent(number, format=None)
168164
>>> format_percent(0.34)
169165
'34%'
170166

171167
>>> from flask_babel import format_scientific
172-
>>> #format_scientific(number, format=None)
173168
>>> format_scientific(10000)
174169
'1E4'
175170

0 commit comments

Comments
 (0)