summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2007-05-04 08:16:46 +0200
committergbrandl <devnull@localhost>2007-05-04 08:16:46 +0200
commit61baa23235b73b0272fad58e1c4a75a7320ff908 (patch)
treea71eee148b8ea460e71e4b2cbf6ce1db7274dd52
parentcb3734de01c80255204a2479386d44a2c349bd00 (diff)
downloadpygments-61baa23235b73b0272fad58e1c4a75a7320ff908.tar.gz
[svn] Two little fixes.
-rw-r--r--pygments/filters/__init__.py2
-rw-r--r--pygments/unistring.py2
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.