mirror of https://github.com/tqdm/tqdm.git
minor docfix
This commit is contained in:
parent
e07ae792d6
commit
234959b113
|
@ -84,8 +84,9 @@ Wrap ``tqdm()`` around any iterable:
|
||||||
|
|
||||||
.. code:: python
|
.. code:: python
|
||||||
|
|
||||||
|
text = ""
|
||||||
for char in tqdm(["a", "b", "c", "d"]):
|
for char in tqdm(["a", "b", "c", "d"]):
|
||||||
print char
|
text = text + char
|
||||||
|
|
||||||
``trange(i)`` is a special optimised instance of ``tqdm(range(i))``:
|
``trange(i)`` is a special optimised instance of ``tqdm(range(i))``:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue