diff options
author | gbrandl <devnull@localhost> | 2007-05-04 08:16:46 +0200 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2007-05-04 08:16:46 +0200 |
commit | 61baa23235b73b0272fad58e1c4a75a7320ff908 (patch) | |
tree | a71eee148b8ea460e71e4b2cbf6ce1db7274dd52 | |
parent | cb3734de01c80255204a2479386d44a2c349bd00 (diff) | |
download | pygments-61baa23235b73b0272fad58e1c4a75a7320ff908.tar.gz |
[svn] Two little fixes.
-rw-r--r-- | pygments/filters/__init__.py | 2 | ||||
-rw-r--r-- | pygments/unistring.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pygments/filters/__init__.py b/pygments/filters/__init__.py index 3df10a4f..3268f660 100644 --- a/pygments/filters/__init__.py +++ b/pygments/filters/__init__.py @@ -232,7 +232,7 @@ class VisibleWhitespaceFilter(Filter): `wstokentype` : bool If true, give whitespace the special `Whitespace` token type. This allows styling the visible whitespace differently (e.g. greyed out), but it can - disrupt background colors. The default is ``True`` + disrupt background colors. The default is ``True``. *New in Pygments 0.8.* """ diff --git a/pygments/unistring.py b/pygments/unistring.py index 7768b3fe..6b5a3fb8 100644 --- a/pygments/unistring.py +++ b/pygments/unistring.py @@ -3,7 +3,7 @@ pygments.unistring ~~~~~~~~~~~~~~~~~~ - Strings of all Unicode characters of a certain type. + Strings of all Unicode characters of a certain category. Used for matching in Unicode-aware languages. Run to regenerate. Inspired by chartypes_create.py from the MoinMoin project. |