Merge pull request #163 from timgates42/bugfix_typo_sequence

docs: fix simple typo, sequece -> sequence
This commit is contained in:
Long Le 2021-01-03 09:17:10 +07:00 committed by GitHub
commit 22496f3d4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ isinstance(x, six.integer_types)
## Strings
In Python 2, `bytes` is an alias for `str`. In Python 3, `str` is a unicode
type and `bytes` is used for a sequece of arbitrary bytes. Use a leading 'b' to
type and `bytes` is used for a sequence of arbitrary bytes. Use a leading 'b' to
signify that a string is a `bytes` object.
```python