]> granicus.if.org Git - python/commitdiff
Issue #14793: fix grammar in bytes object paragraph; patch by Tshepang Lekhonkhobe
authorSandro Tosi <sandro.tosi@gmail.com>
Sun, 13 May 2012 09:01:20 +0000 (11:01 +0200)
committerSandro Tosi <sandro.tosi@gmail.com>
Sun, 13 May 2012 09:01:20 +0000 (11:01 +0200)
Doc/library/stdtypes.rst

index d46cee504ad9c1beeb6c574ee134df0fa8e90ee9..b89387f15415c74880836c954b460799de39879c 100644 (file)
@@ -819,7 +819,8 @@ string literals.  In addition to the functionality described here, there are
 also string-specific methods described in the :ref:`string-methods` section.
 
 Bytes and bytearray objects contain single bytes -- the former is immutable
-while the latter is a mutable sequence.  Bytes objects can be constructed the
+while the latter is a mutable sequence.
+Bytes objects can be constructed by using the
 constructor, :func:`bytes`, and from literals; use a ``b`` prefix with normal
 string syntax: ``b'xyzzy'``.  To construct byte arrays, use the
 :func:`bytearray` function.