From 234959b113f3539fe630cb7f8664bfd0c9836782 Mon Sep 17 00:00:00 2001 From: Casper da Costa-Luis Date: Thu, 21 Jan 2016 18:11:35 +0000 Subject: [PATCH] minor docfix --- README.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 33f42e07..25c15d03 100644 --- a/README.rst +++ b/README.rst @@ -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))``: