]> granicus.if.org Git - python/commitdiff
Close open bracket, thanks to Josh Helzer from docs@
authorAndrew Svetlov <andrew.svetlov@gmail.com>
Tue, 2 Oct 2012 15:39:25 +0000 (18:39 +0300)
committerAndrew Svetlov <andrew.svetlov@gmail.com>
Tue, 2 Oct 2012 15:39:25 +0000 (18:39 +0300)
Doc/reference/datamodel.rst

index 2ddb852468e32c8a1494416a47a5c5feedd6a3a3..7fad05e3942b6e6a70a7b09230bec4525a8e4209 100644 (file)
@@ -305,7 +305,7 @@ Sequences
 
          A bytes object is an immutable array.  The items are 8-bit bytes,
          represented by integers in the range 0 <= x < 256.  Bytes literals
-         (like ``b'abc'`` and the built-in function :func:`bytes` can be used to
+         (like ``b'abc'``) and the built-in function :func:`bytes` can be used to
          construct bytes objects.  Also, bytes objects can be decoded to strings
          via the :meth:`decode` method.