diff options
Diffstat (limited to 'Doc/library/re.rst')
-rw-r--r-- | Doc/library/re.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/re.rst b/Doc/library/re.rst index 1ef6c4e..75059cd 100644 --- a/Doc/library/re.rst +++ b/Doc/library/re.rst @@ -1389,7 +1389,7 @@ functionally identical: Writing a Tokenizer ^^^^^^^^^^^^^^^^^^^ -A `tokenizer or scanner <http://en.wikipedia.org/wiki/Lexical_analysis>`_ +A `tokenizer or scanner <https://en.wikipedia.org/wiki/Lexical_analysis>`_ analyzes a string to categorize groups of characters. This is a useful first step in writing a compiler or interpreter. |