Skip to content

Commit

Permalink
Fix typo in URL document loader example (#10585)
Browse files Browse the repository at this point in the history
- **Description:** Fix typo in URL document loader example
  - **Issue:** N/A
  - **Dependencies:** N/A
  - **Tag maintainer:** not urgent
  • Loading branch information
0xniklas authored Sep 21, 2023
1 parent ea26c12 commit e5f420d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/langchain/langchain/document_loaders/url.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class UnstructuredURLLoader(BaseLoader):
from langchain.document_loaders import UnstructuredURLLoader
loader = UnstructuredURLLoader(
ursl=["<url-1>", "<url-2>"], mode="elements", strategy="fast",
urls=["<url-1>", "<url-2>"], mode="elements", strategy="fast",
)
docs = loader.load()
Expand Down

0 comments on commit e5f420d

Please sign in to comment.