From c4f2bc95401bd41d40c9c7ba2fe959e12a059408 Mon Sep 17 00:00:00 2001 From: Baskar Gopinath <73015364+baskargopinath@users.noreply.github.com> Date: Sat, 15 Jun 2024 05:00:48 +0800 Subject: [PATCH] docs: Fix wrongly referenced class name in confluence.py (#22879) Fixes #22542 Changed ConfluenceReader to ConfluenceLoader --- .../langchain_community/document_loaders/confluence.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/community/langchain_community/document_loaders/confluence.py b/libs/community/langchain_community/document_loaders/confluence.py index 8a70758dd6771..f69d67f2e2b0c 100644 --- a/libs/community/langchain_community/document_loaders/confluence.py +++ b/libs/community/langchain_community/document_loaders/confluence.py @@ -42,7 +42,7 @@ class ConfluenceLoader(BaseLoader): You can also specify a boolean `include_attachments` to include attachments, this is set to False by default, if set to True all attachments will be downloaded and - ConfluenceReader will extract the text from the attachments and add it to the + ConfluenceLoader will extract the text from the attachments and add it to the Document object. Currently supported attachment types are: PDF, PNG, JPEG/JPG, SVG, Word and Excel.