bpo-27428: Fix WindowsRegistryFinder documentation to list appropriate ABC (GH-6061)
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst
index db75f69..f9387c0 100644
--- a/Doc/library/importlib.rst
+++ b/Doc/library/importlib.rst
@@ -1030,7 +1030,7 @@
.. class:: WindowsRegistryFinder
:term:`Finder` for modules declared in the Windows registry. This class
- implements the :class:`importlib.abc.Finder` ABC.
+ implements the :class:`importlib.abc.MetaPathFinder` ABC.
Only class methods are defined by this class to alleviate the need for
instantiation.
diff --git a/Misc/NEWS.d/next/Documentation/2018-03-11-00-16-56.bpo-27428.B7A8FT.rst b/Misc/NEWS.d/next/Documentation/2018-03-11-00-16-56.bpo-27428.B7A8FT.rst
new file mode 100644
index 0000000..c9ac8e2
--- /dev/null
+++ b/Misc/NEWS.d/next/Documentation/2018-03-11-00-16-56.bpo-27428.B7A8FT.rst
@@ -0,0 +1,2 @@
+Update documentation to clarify that ``WindowsRegistryFinder`` implements
+``MetaPathFinder``. (Patch by Himanshu Lakhara)