minor docfix

This commit is contained in:
Casper da Costa-Luis 2016-01-21 18:11:35 +00:00
parent e07ae792d6
commit 234959b113
1 changed files with 2 additions and 1 deletions

View File

@ -84,8 +84,9 @@ Wrap ``tqdm()`` around any iterable:
.. code:: python
text = ""
for char in tqdm(["a", "b", "c", "d"]):
print char
text = text + char
``trange(i)`` is a special optimised instance of ``tqdm(range(i))``: