From 6d6226d96dbffb838986553991bad1febf6f2872 Mon Sep 17 00:00:00 2001 From: Hank Date: Mon, 29 Jan 2024 16:55:26 -0500 Subject: [PATCH] docs: Remove accidental extra ``` in QuickStart doc. (#16740) Description: One too many set of triple-ticks in a sample code block in the QuickStart doc was causing "\`\`\`shell" to appear in the shell command that was being demonstrated. I just deleted the extra "```". Issue: Didn't see one Dependencies: None --- docs/docs/get_started/quickstart.mdx | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/docs/get_started/quickstart.mdx b/docs/docs/get_started/quickstart.mdx index d07d3f2939c..120bfe6cdcc 100644 --- a/docs/docs/get_started/quickstart.mdx +++ b/docs/docs/get_started/quickstart.mdx @@ -184,7 +184,6 @@ A Retriever can be backed by anything - a SQL table, the internet, etc - but in First, we need to load the data that we want to index. In order to do this, we will use the WebBaseLoader. This requires installing [BeautifulSoup](https://beautiful-soup-4.readthedocs.io/en/latest/): -``` ```shell pip install beautifulsoup4 ```