From caa12ab0c7e1b1e2c2a08fe5feefd92d0cc04c6e Mon Sep 17 00:00:00 2001 From: Anatolii Yatsuk <35109939+tolik0@users.noreply.github.com> Date: Fri, 6 Sep 2024 17:39:35 +0300 Subject: [PATCH] docs(airbyte-cdk): Fix error in incremental sync docs (#45194) --- .../understanding-the-yaml-file/incremental-syncs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/connector-development/config-based/understanding-the-yaml-file/incremental-syncs.md b/docs/connector-development/config-based/understanding-the-yaml-file/incremental-syncs.md index 85a408027ccb..1ba21a4f9065 100644 --- a/docs/connector-development/config-based/understanding-the-yaml-file/incremental-syncs.md +++ b/docs/connector-development/config-based/understanding-the-yaml-file/incremental-syncs.md @@ -220,7 +220,7 @@ The default state format is **per partition**, but there are options to enhance ``` ### Summary -- **Per Partition**: Default, use for manageable partitions (<10k). +- **Per Partition**: Default, use for manageable partitions (\<10k). - **Incremental Dependency**: Use for incremental parent streams with a dependent child cursor. Ensure API updates parent cursor with child records. - **Global Substream Cursor**: Ideal for large-scale parent streams with many partitions to optimize performance.