From eeb55f8a91a4efb6d3274b16e412f142af2050fe Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Tue, 22 Dec 2020 22:52:59 +1100 Subject: [PATCH] docs: fix simple typo, specal -> special There is a small typo in src/tinycss/tests/tokenizing.py. Should read `special` rather than `specal`. --- src/tinycss/tests/tokenizing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tinycss/tests/tokenizing.py b/src/tinycss/tests/tokenizing.py index 1b31ee39d3..fdb4821f2e 100644 --- a/src/tinycss/tests/tokenizing.py +++ b/src/tinycss/tests/tokenizing.py @@ -186,7 +186,7 @@ foo(int x) {\ ('S', '\n'), ('IDENT', 'Ipsum')]), # Cancel the meaning of special characters - (r'"Lore\m Ipsum"', [('STRING', 'Lorem Ipsum')]), # or not specal + (r'"Lore\m Ipsum"', [('STRING', 'Lorem Ipsum')]), # or not special (r'"Lorem \49psum"', [('STRING', 'Lorem Ipsum')]), (r'"Lorem \49 psum"', [('STRING', 'Lorem Ipsum')]), (r'"Lorem\"Ipsum"', [('STRING', 'Lorem"Ipsum')]),