From 56a4bd31b97eb8c395dee26a67c18fa5e82ece95 Mon Sep 17 00:00:00 2001 From: Fanit Kolchina Date: Mon, 17 Feb 2025 16:30:37 -0500 Subject: [PATCH] Fix the trim processor table Signed-off-by: Fanit Kolchina --- _ingest-pipelines/processors/trim.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/_ingest-pipelines/processors/trim.md b/_ingest-pipelines/processors/trim.md index 5014581648..a955fb26ea 100644 --- a/_ingest-pipelines/processors/trim.md +++ b/_ingest-pipelines/processors/trim.md @@ -26,11 +26,10 @@ The following is the syntax for the `trim` processor: The following table lists the required and optional parameters for the `trim` processor. Parameter | Required/Optional | Description ------------|-----------|----------- +:---|:---|:--- `field` | Required | The field containing the text to be trimmed. `target_field` | Required | The field in which the trimmed text is stored. If not specified, then the field is updated in-place. -`ignore_missing` | Optional | Specifies whether the processor should ignore documents that do not contain the specified -field. If set to `true`, then the processor ignores missing values in the field and leaves the `target_field` unchanged. Default is `false`. +`ignore_missing` | Optional | Specifies whether the processor should ignore documents that do not contain the specified field. If set to `true`, then the processor ignores missing values in the field and leaves the `target_field` unchanged. Default is `false`. `description` | Optional | A brief description of the processor. `if` | Optional | A condition for running the processor. `ignore_failure` | Optional | Specifies whether the processor continues execution even if it encounters an error. If set to `true`, then failures are ignored. Default is `false`.