From ffd11486d426fa3b45946da72d274cd88be942d1 Mon Sep 17 00:00:00 2001 From: clach04 Date: Sun, 20 Oct 2019 18:22:20 -0700 Subject: [PATCH] tests/cpydiff: Fix typo in types_bytes_keywords.py doc comments. --- tests/cpydiff/types_bytes_keywords.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'))