Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Doc/library/stdtypes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3306,7 +3306,7 @@ arbitrary binary data.
.. staticmethod:: bytes.maketrans(from, to, /)
bytearray.maketrans(from, to, /)

This static method returns a translation table usable for
This static method returns a translation table usable for bytearray or
:meth:`bytes.translate` that will map each character in *from* into the
character at the same position in *to*; *from* and *to* must both be
:term:`bytes-like objects <bytes-like object>` and have the same length.
Expand Down
Loading