From f97b22d0060d46937e45a129ca1ff644da0cd065 Mon Sep 17 00:00:00 2001 From: Mike van Lammeren Date: Wed, 16 Mar 2022 15:49:29 -0400 Subject: [PATCH] Update SYNC_MODE.md Fixed typo: `its` instead of `it's` --- docs/SYNC_MODE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/SYNC_MODE.md b/docs/SYNC_MODE.md index 699a95c..43a043e 100644 --- a/docs/SYNC_MODE.md +++ b/docs/SYNC_MODE.md @@ -24,7 +24,7 @@ The [Catalog](DISCOVERY_MODE.md#the-catalog) provided to the Tap contains the st ## Replication Method Taps can support two replication methods, and should decide which to use by checking the `replication-method` metadata for a stream, which should be one of the following: -- `INCREMENTAL` - The Tap saves it's progress via bookmarks or some other mechanism in the state. Only new or updated records are replicated during each sync. +- `INCREMENTAL` - The Tap saves its progress via bookmarks or some other mechanism in the state. Only new or updated records are replicated during each sync. - `FULL_TABLE` - The Tap replicates all available records dating back to a `start_date`, defined in the config file, during every sync.