Skip to content

Commit 466ba40

Browse files
final proof-read of docs
1 parent a603cb4 commit 466ba40

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/reference/enrich-processor/convert-processor.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Converts a field in the currently ingested document to a different type, such as
1010

1111
## Supported types
1212

13-
The supported types are: `integer`, `long`, `float`, `double`, `string`, `boolean`, `ip`, and `auto`.
13+
The supported types are: `integer`, `long`, `float`, `double`, `string`, `boolean`, `ip`, and `auto` (all case-insensitive).
1414

1515
| Target `type` | Supported input values |
1616
|---------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
@@ -19,7 +19,7 @@ The supported types are: `integer`, `long`, `float`, `double`, `string`, `boolea
1919
| `float` | `Integer` values (may lose precision for absolute values greater than 2^24^)<br><br>`Long` values (may lose precision for absolute values greater than 2^24^)<br><br>`Float` values<br><br>`Double` values (may lose precision)<br><br>`String` values representing a floating point number in decimal, scientific, or hex format (e.g. `"123.0"`, `"123.45"`, `"1.23e2"`, or `"0x1.ecp6"`) or an integer (may lose precision, and will give positive or negative infinity if out of range for a 32-bit floating point value) |
2020
| `double` | `Integer` values<br><br>`Long` values (may lose precision for absolute values greater than 2^53^)<br><br>`Float` values<br><br>`Double` values<br><br>`String` values representing a floating point number in decimal, scientific, or hex format (e.g. `"123.0"`, `"123.45"`, `"1.23e2"`, or `"0x1.ecp6"`) or an integer (may lose precision, and will give positive or negative infinity if out of range for a 64-bit floating point value) |
2121
| `string` | All values |
22-
| `boolean` | `Boolean` values<br><br>`String` values matching `"true"` or `"false"` (case insensitive) |
22+
| `boolean` | `Boolean` values<br><br>`String` values matching `"true"` or `"false"` (case-insensitive) |
2323
| `ip` | `String` values containing a valid IPv4 or IPv6 address that can be indexed into an [IP field type](/reference/elasticsearch/mapping-reference/ip.md) |
2424
| `auto` | All values (see below) |
2525

@@ -29,8 +29,8 @@ Specifying `auto` will attempt to convert a string-valued `field` into the close
2929
lose precision, and will give positive or negative infinity if out of range for a 32-bit floating point value).
3030
- A string representing a floating point number in decimal, scientific, or hex format (e.g. `"123.0"`, `"123.45"`, `"1.23e2"`, or `"0x1.ecp6"`) will be converted to a `Float` (and may lose precision, and will give positive or negative infinity if out of range for a 32-bit floating point value).
3131

32-
Using `auto` to convert a `field` which is either not a `String` or a `String` which cannot be will leave the field
33-
value as-is. In such a case, `target_field` will be updated with the unconverted field value.
32+
Using `auto` to convert a `field` which is either not a `String` or a `String` which cannot be converted will leave the
33+
field value as-is. In such a case, `target_field` will be updated with the unconverted field value.
3434

3535
:::{tip}
3636
If conversions other than those provided by this processor are required, the

0 commit comments

Comments
 (0)