From eab8cd93474f11faa00689b6419dc5777f68b3b0 Mon Sep 17 00:00:00 2001 From: Paschalis Tsilias Date: Thu, 25 Apr 2024 16:31:54 +0300 Subject: [PATCH] docs: remove 'd' from duration values spec (#674) Signed-off-by: Paschalis Tsilias --- .../configuration-syntax/expressions/types_and_values.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/sources/concepts/configuration-syntax/expressions/types_and_values.md b/docs/sources/concepts/configuration-syntax/expressions/types_and_values.md index c5b009a247..6a156f7af0 100644 --- a/docs/sources/concepts/configuration-syntax/expressions/types_and_values.md +++ b/docs/sources/concepts/configuration-syntax/expressions/types_and_values.md @@ -28,10 +28,9 @@ In addition to the preceding types, the [component reference][] documentation us The key type of an object is always a string or an identifier converted into a string. * `list(T)`: an `array` with the value type`T`. For example, `list(string)` is an array where all the values are strings. -* `duration`: a `string` denoting a duration of time, such as `"1d"`, `"1h30m"`, `"10s"`. +* `duration`: a `string` denoting a duration of time, such as `"100ms"`, `"1h30m"`, `"10s"`. Valid units are: - * `d` for days. * `h` for hours. * `m` for minutes. * `s` for seconds.