docs: fix simple typo, specal -> special

There is a small typo in src/tinycss/tests/tokenizing.py.

Should read `special` rather than `specal`.
This commit is contained in:
Tim Gates 2020-12-22 22:52:59 +11:00
parent c6d9bce9e8
commit eeb55f8a91
No known key found for this signature in database
GPG Key ID: AE3BE0D53823CF05

View File

@ -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')]),