From: Andrew Svetlov <andrew.svetlov@gmail.com>
Date: Tue, 2 Oct 2012 15:39:25 +0000 (+0300)
Subject: Close open bracket, thanks to Josh Helzer from docs@
X-Git-Tag: v3.4.0a1~2403^2
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f532035551368b254e86d0e68004983c107f33f5;p=python

Close open bracket, thanks to Josh Helzer from docs@
---

diff --git a/Doc/reference/datamodel.rst b/Doc/reference/datamodel.rst
index 2ddb852468..7fad05e394 100644
--- a/Doc/reference/datamodel.rst
+++ b/Doc/reference/datamodel.rst
@@ -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.