From 72479de14659cd3791f5caf1a19e0f9e091146b3 Mon Sep 17 00:00:00 2001 From: LJ Date: Sun, 11 May 2025 10:46:49 -0700 Subject: [PATCH] docs: minor typo fixes --- docs/docs/core/basics.md | 2 +- src/execution/source_indexer.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/core/basics.md b/docs/docs/core/basics.md index 45464cb1..466dc2cc 100644 --- a/docs/docs/core/basics.md +++ b/docs/docs/core/basics.md @@ -11,7 +11,7 @@ CocoIndex is an ETL framework for building indexes from specified data sources, ## Indexing flow -An indexing flow extracts data from speicfied data sources, upon specified transformations, and puts the transformed data into specified storage for later retrieval. +An indexing flow extracts data from specified data sources, upon specified transformations, and puts the transformed data into specified storage for later retrieval. An indexing flow has two aspects: data and operations on data. diff --git a/src/execution/source_indexer.rs b/src/execution/source_indexer.rs index 23d29c1d..94f248f8 100644 --- a/src/execution/source_indexer.rs +++ b/src/execution/source_indexer.rs @@ -96,7 +96,7 @@ impl SourceIndexingContext { } else if let Some(value) = value { Some(value) } else { - // Even if the source version kind is not Deleted, the source value might be gone one polling. + // Even if the source version kind is not Deleted, the source value might be gone when polling. // In this case, we still use the current source version even if it's already stale - actually this version skew // also happens for update cases and there's no way to keep them always in sync for many sources. //