diff options
author | clach04 <clach04@gmail.com> | 2019-10-20 18:22:20 -0700 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-10-21 23:25:09 +1100 |
commit | ffd11486d426fa3b45946da72d274cd88be942d1 (patch) | |
tree | dc8c7e8012899463606420cef7f8bf4343b8e54f | |
parent | 93bd61ca91a3efcec9bc090fae193287bfa120e0 (diff) |
tests/cpydiff: Fix typo in types_bytes_keywords.py doc comments.
-rw-r--r-- | tests/cpydiff/types_bytes_keywords.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cpydiff/types_bytes_keywords.py b/tests/cpydiff/types_bytes_keywords.py index 4dc383f26..bdba966f7 100644 --- a/tests/cpydiff/types_bytes_keywords.py +++ b/tests/cpydiff/types_bytes_keywords.py @@ -2,6 +2,6 @@ categories: Types,bytes description: bytes() with keywords not implemented cause: Unknown -workaround: Pass the encoding as a positional paramter, e.g. ``print(bytes('abc', 'utf-8'))`` +workaround: Pass the encoding as a positional parameter, e.g. ``print(bytes('abc', 'utf-8'))`` """ print(bytes('abc', encoding='utf8')) |