From f32ef5f38f4b4db300b334b1ee4b98950826199d Mon Sep 17 00:00:00 2001 From: Alois Mahdal Date: Tue, 24 Sep 2013 22:25:57 +0200 Subject: [PATCH] Reworded per rgbkrk's suggestion --- docs/writing/style.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/writing/style.rst b/docs/writing/style.rst index a631e4a..33339ff 100644 --- a/docs/writing/style.rst +++ b/docs/writing/style.rst @@ -273,8 +273,8 @@ Unpacking ~~~~~~~~~ If you know the length of a list or tuple, you can assign names to its -elements with unpacking. For example, since you know that ``enumerate()`` -will provide a tuple of two elements for each item in list: +elements with unpacking. For example, since ``enumerate()`` will provide +a tuple of two elements for each item in list: .. code-block:: python