From 2d6490e3f86b7edb5fa903890fb2a9db606a167a Mon Sep 17 00:00:00 2001 From: Chris Beard Date: Sat, 19 Aug 2023 10:04:52 -0400 Subject: [PATCH] [docs] Fix minor typos in ExtractNewRecordState docs --- COPYRIGHT.txt | 1 + .../java/io/debezium/transforms/ExtractNewRecordState.java | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/COPYRIGHT.txt b/COPYRIGHT.txt index 90dd4ea5e..3a66a996e 100644 --- a/COPYRIGHT.txt +++ b/COPYRIGHT.txt @@ -89,6 +89,7 @@ Calin Laurentiu Ilie Cheng Pan Ching Tsai Chris Baumbauer +Chris Beard Chris Collingwood Chris Cranford Chris Egerton diff --git a/debezium-core/src/main/java/io/debezium/transforms/ExtractNewRecordState.java b/debezium-core/src/main/java/io/debezium/transforms/ExtractNewRecordState.java index 63cb335e4..0711c7416 100644 --- a/debezium-core/src/main/java/io/debezium/transforms/ExtractNewRecordState.java +++ b/debezium-core/src/main/java/io/debezium/transforms/ExtractNewRecordState.java @@ -62,8 +62,8 @@ * The SMT by default drops the tombstone message created by Debezium and converts the delete message into * a tombstone message that can be dropped, too, if required. *

- * The SMT also has the option to insert fields from the original record (e.g. 'op' or 'source.ts_ms' into the - * unwrapped record or ad them as header attributes. + * The SMT also has the option to insert fields from the original record (e.g. 'op' or 'source.ts_ms') into the + * unwrapped record or add them as header attributes. * * @param the subtype of {@link ConnectRecord} on which this transformation will operate * @author Jiri Pechanec