Skip to content

Commit 4855b4a

Browse files
Add word missing from convert processor docs (#133544)
Relates #133153
1 parent 5e6887b commit 4855b4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The supported types are: `integer`, `long`, `float`, `double`, `string`, `boolea
2424
| `auto` | All values (see below) |
2525

2626
Specifying `auto` will attempt to convert a string-valued `field` into the closest non-string, non-IP type:
27-
- A whose value is `"true"` or `"false"` (case insensitive) will be converted to a `Boolean`.
27+
- A string whose value is `"true"` or `"false"` (case insensitive) will be converted to a `Boolean`.
2828
- A string representing an integer in decimal or hex format (e.g. `"123"` or `"0x7b"`) will be converted to an `Integer` if the number fits in a 32-bit signed integer, else to a `Long` if it fits in a 64-bit signed integer, else to a `Float` (in which case it may
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).

0 commit comments

Comments
 (0)