diff --git a/langchain/document_loaders/html.py b/langchain/document_loaders/html.py
index a65edba2798..3d87f9fe1da 100644
--- a/langchain/document_loaders/html.py
+++ b/langchain/document_loaders/html.py
@@ -1,4 +1,4 @@
-"""Loader that loads PDF files."""
+"""Loader that uses unstructured to load HTML files."""
from typing import List
from langchain.document_loaders.unstructured import UnstructuredFileLoader
diff --git a/langchain/document_loaders/url.py b/langchain/document_loaders/url.py
index 1673f194f22..1b3328496ed 100644
--- a/langchain/document_loaders/url.py
+++ b/langchain/document_loaders/url.py
@@ -1,4 +1,4 @@
-"""Loader that loads PDF files."""
+"""Loader that uses unstructured to load HTML files."""
from typing import List
from langchain.docstore.document import Document