#670664: Fix HTMLParser to correctly handle the content of ``<script>...</script>`` and ``<style>...</style>``.
diff --git a/Doc/library/html.parser.rst b/Doc/library/html.parser.rst
index 0dc81a5..7c44bec 100644
--- a/Doc/library/html.parser.rst
+++ b/Doc/library/html.parser.rst
@@ -115,7 +115,8 @@
.. method:: HTMLParser.handle_data(data)
- This method is called to process arbitrary data. It is intended to be
+ This method is called to process arbitrary data (e.g. the content of
+ ``<script>...</script>`` and ``<style>...</style>``). It is intended to be
overridden by a derived class; the base class implementation does nothing.