From cb8d1aa5ec767edc7f5be30e91122710eb08547d Mon Sep 17 00:00:00 2001 From: Joseph Martinez <joseph.r.martinez@gmail.com> Date: Mon, 23 Oct 2023 00:54:32 -0700 Subject: [PATCH] Update concepts.md (#8244) Grammar. Correct plural typos. --- docs/getting_started/concepts.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting_started/concepts.md b/docs/getting_started/concepts.md index a7d566c067..1c9fd8d5bb 100644 --- a/docs/getting_started/concepts.md +++ b/docs/getting_started/concepts.md @@ -26,11 +26,11 @@ Let's explore each stage in detail. ### Indexing Stage -LlamaIndex help you prepare the knowledge base with a suite of data connectors and indexes. +LlamaIndex helps you prepare the knowledge base with a suite of data connectors and indexes.  [**Data Connectors**](/core_modules/data_modules/connector/root.md): -A data connector (i.e. `Reader`) ingest data from different data sources and data formats into a simple `Document` representation (text and simple metadata). +A data connector (i.e. `Reader`) ingests data from different data sources and data formats into a simple `Document` representation (text and simple metadata). [**Documents / Nodes**](/core_modules/data_modules/documents_and_nodes/root.md): A `Document` is a generic container around any data source - for instance, a PDF, an API output, or retrieved data from a database. A `Node` is the atomic unit of data in LlamaIndex and represents a "chunk" of a source `Document`. It's a rich representation that includes metadata and relationships (to other nodes) to enable accurate and expressive retrieval operations. -- GitLab