From 7d2b946d0b5c62a460c4c716ae89585403c61284 Mon Sep 17 00:00:00 2001 From: Ryo Kanazawa <83718263+gyroflaw@users.noreply.github.com> Date: Fri, 16 Jun 2023 00:18:27 +0900 Subject: [PATCH] Fix typo `pandocs` to `pandoc` (#6203) Fixes https://github.com/hwchase17/langchain/issues/6204 ### Context An typo issue with `pandoc`. #### Who can review? @hwchase17 --- docs/modules/indexes/document_loaders/examples/epub.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/modules/indexes/document_loaders/examples/epub.ipynb b/docs/modules/indexes/document_loaders/examples/epub.ipynb index b81d6c59..78660171 100644 --- a/docs/modules/indexes/document_loaders/examples/epub.ipynb +++ b/docs/modules/indexes/document_loaders/examples/epub.ipynb @@ -9,7 +9,7 @@ "\n", ">[EPUB](https://en.wikipedia.org/wiki/EPUB) is an e-book file format that uses the \".epub\" file extension. The term is short for electronic publication and is sometimes styled ePub. `EPUB` is supported by many e-readers, and compatible software is available for most smartphones, tablets, and computers.\n", "\n", - "This covers how to load `.epub` documents into the Document format that we can use downstream. You'll need to install the [`pandocs`](https://pandoc.org/installing.html) package for this loader to work." + "This covers how to load `.epub` documents into the Document format that we can use downstream. You'll need to install the [`pandoc`](https://pandoc.org/installing.html) package for this loader to work." ] }, { @@ -19,7 +19,7 @@ "metadata": {}, "outputs": [], "source": [ - "#!pip install pandocs" + "#!pip install pandoc" ] }, {