From 019eb13681b93a1ec37afdb0e72c11c09ab76448 Mon Sep 17 00:00:00 2001 From: George Geddes Date: Mon, 5 Jun 2023 16:30:24 -0400 Subject: [PATCH] Fix a typo in the documentation for the Slack document loader (#5745) Fixes a typo I noticed while reading the docs. --- docs/modules/indexes/document_loaders/examples/slack.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/indexes/document_loaders/examples/slack.ipynb b/docs/modules/indexes/document_loaders/examples/slack.ipynb index 645c74e5..d9aed810 100644 --- a/docs/modules/indexes/document_loaders/examples/slack.ipynb +++ b/docs/modules/indexes/document_loaders/examples/slack.ipynb @@ -41,7 +41,7 @@ "source": [ "# Optionally set your Slack URL. This will give you proper URLs in the docs sources.\n", "SLACK_WORKSPACE_URL = \"https://xxx.slack.com\"\n", - "LOCAL_ZIPFILE = \"\" # Paste the local paty to your Slack zip file here.\n", + "LOCAL_ZIPFILE = \"\" # Paste the local path to your Slack zip file here.\n", "\n", "loader = SlackDirectoryLoader(LOCAL_ZIPFILE, SLACK_WORKSPACE_URL)" ]