diff options
Diffstat (limited to 'Include/cpython/bytesobject.h')
-rw-r--r-- | Include/cpython/bytesobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/cpython/bytesobject.h b/Include/cpython/bytesobject.h index f284c58..6b3f552 100644 --- a/Include/cpython/bytesobject.h +++ b/Include/cpython/bytesobject.h @@ -10,7 +10,7 @@ typedef struct { /* Invariants: * ob_sval contains space for 'ob_size+1' elements. * ob_sval[ob_size] == 0. - * ob_shash is the hash of the string or -1 if not computed yet. + * ob_shash is the hash of the byte string or -1 if not computed yet. */ } PyBytesObject; |