mirror of
https://github.com/hwchase17/langchain.git
synced 2025-07-16 17:53:37 +00:00
docs: Fix typo in retrievers documentation: 'An vectorstore' -> 'A vectorstore' (#29221)
- [x] **PR title**: "docs: Fix typo in documentation" - [x] **PR message**: - **Description:** Fixed a typo in the documentation, changing "An vectorstore" to "A vector store" for grammatical accuracy. - **Issue:** N/A (no issue filed for this typo fix) - **Dependencies:** None - **Twitter handle:** N/A - [x] **Add tests and docs**: This is a minor documentation fix that doesn't require additional tests or example notebooks. - [x] **Lint and test**: Run `make format`, `make lint` and `make test` from the root of the package(s) you've modified. See contribution guidelines for more: https://python.langchain.com/docs/contributing/
This commit is contained in:
parent
d1cf10373b
commit
bea5798b04
@ -90,7 +90,7 @@ LangChain has retrievers for many popular lexical search algorithms / engines.
|
||||
### Vector store
|
||||
|
||||
[Vector stores](/docs/concepts/vectorstores/) are a powerful and efficient way to index and retrieve unstructured data.
|
||||
An vectorstore can be used as a retriever by calling the `as_retriever()` method.
|
||||
A vectorstore can be used as a retriever by calling the `as_retriever()` method.
|
||||
|
||||
```python
|
||||
vectorstore = MyVectorStore()
|
||||
|
Loading…
Reference in New Issue
Block a user