diff options
author | blackbird <devnull@localhost> | 2007-01-13 12:25:00 +0100 |
---|---|---|
committer | blackbird <devnull@localhost> | 2007-01-13 12:25:00 +0100 |
commit | 8b668f9a438c219f78df25ba10492ce228aa574f (patch) | |
tree | c4ff1ee208a605ba295e2e9d326be8664276fec3 /docs/src | |
parent | 798446c3128ac2248d8d1bced734bbd91ad9f1da (diff) | |
download | pygments-8b668f9a438c219f78df25ba10492ce228aa574f.tar.gz |
[svn] added missing explanation for Punctuation in overview
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/tokens.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/src/tokens.txt b/docs/src/tokens.txt index 0fab0feb..dae122a5 100644 --- a/docs/src/tokens.txt +++ b/docs/src/tokens.txt @@ -59,8 +59,8 @@ Inside the `pygments.token` module the following aliases are defined: `Literal` `Token.Literal` Any literals `String` `Token.Literal.String` string literals `Number` `Token.Literal.Number` number literals -`Operator` `Token.Operator` operators (``+``, ``not`` etc) -`Punctuation` `Token.Punctuation` +`Operator` `Token.Operator` operators (``+``, ``not``...) +`Punctuation` `Token.Punctuation` punctuation (``[``, ``(``...) `Comment` `Token.Comment` any kind of comments `Generic` `Token.Generic` generic tokens (have a look at the explanation below) |