]> granicus.if.org Git - python/commitdiff
Remove gratuitous unicode character.
authorGeorg Brandl <georg@python.org>
Sun, 16 Dec 2007 15:53:49 +0000 (15:53 +0000)
committerGeorg Brandl <georg@python.org>
Sun, 16 Dec 2007 15:53:49 +0000 (15:53 +0000)
Doc/library/stdtypes.rst

index 6b77d5b118108beb3f231ce47e4917f897cc850f..f7363c3e8867caba0e5eae1c1eb25a1a05011c97 100644 (file)
@@ -632,7 +632,7 @@ Notes:
 
 (5)
    The slice of *s* from *i* to *j* with step *k* is defined as the sequence of
-   items with index  ``x = i + n*k`` such that 0 ≤n < (j-i)/(k).  In other words,
+   items with index  ``x = i + n*k`` such that ``0 <= n < (j-i)/k``.  In other words,
    the indices are ``i``, ``i+k``, ``i+2*k``, ``i+3*k`` and so on, stopping when
    *j* is reached (but never including *j*).  If *i* or *j* is greater than
    ``len(s)``, use ``len(s)``.  If *i* or *j* are omitted or ``None``, they become