summaryrefslogtreecommitdiff
path: root/doc/docs
diff options
context:
space:
mode:
Diffstat (limited to 'doc/docs')
-rw-r--r--doc/docs/lexerdevelopment.rst2
-rw-r--r--doc/docs/lexers.rst2
-rw-r--r--doc/docs/unicode.rst2
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/docs/lexerdevelopment.rst b/doc/docs/lexerdevelopment.rst
index c55c98a9..63bd01a3 100644
--- a/doc/docs/lexerdevelopment.rst
+++ b/doc/docs/lexerdevelopment.rst
@@ -400,7 +400,7 @@ There are a few more things you can do with states:
tokens = {...}
def get_tokens_unprocessed(self, text, stack=('root', 'otherstate')):
- for item in RegexLexer.get_tokens_unprocessed(text, stack):
+ for item in RegexLexer.get_tokens_unprocessed(self, text, stack):
yield item
Some lexers like the `PhpLexer` use this to make the leading ``<?php``
diff --git a/doc/docs/lexers.rst b/doc/docs/lexers.rst
index 9262efb0..ef40f140 100644
--- a/doc/docs/lexers.rst
+++ b/doc/docs/lexers.rst
@@ -31,7 +31,7 @@ Currently, **all lexers** support these options:
If this option is set to ``"guess"``, a simple UTF-8 vs. Latin-1
detection is used, if it is set to ``"chardet"``, the
- `chardet library <http://chardet.feedparser.org/>`_ is used to
+ `chardet library <https://chardet.github.io/>`_ is used to
guess the encoding of the input.
.. versionadded:: 0.6
diff --git a/doc/docs/unicode.rst b/doc/docs/unicode.rst
index 17853a36..dca91116 100644
--- a/doc/docs/unicode.rst
+++ b/doc/docs/unicode.rst
@@ -55,4 +55,4 @@ encoding is handled differently, see :doc:`the command line docs <cmdline>`.
options dict with lexers and formatters, and still have different input and
output encodings.
-.. _chardet: http://chardet.feedparser.org/
+.. _chardet: https://chardet.github.io/