From c4ed88952c6e1011748409f72ba1a9ebdb1f9139 Mon Sep 17 00:00:00 2001 From: Marco Ieni Date: Mon, 23 Dec 2019 16:11:23 +0100 Subject: [PATCH] docs(config): Disabled at the end of the options In the `time` module, bring `disabled` option at the end of the table for coherence with all the other modules --- docs/config/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/config/README.md b/docs/config/README.md index a460562b3..094b8773c 100644 --- a/docs/config/README.md +++ b/docs/config/README.md @@ -1050,8 +1050,8 @@ To enable it, set `disabled` to `false` in your configuration file. | `use_12hr` | `false` | Enables 12 hour formatting | | `format` | see below | The [chrono format string](https://docs.rs/chrono/0.4.7/chrono/format/strftime/index.html) used to format the time. | | `style` | `bold yellow` | The style for the module time | -| `disabled` | `true` | Disables the `time` module. | | `utc_time_offset` | `local` | Sets the UTC offset to use. Range from -24 < x < 24. Allows floats to accommodate 30/45 minute timezone offsets. | +| `disabled` | `true` | Disables the `time` module. | If `use_12hr` is `true`, then `format` defaults to `"%r"`. Otherwise, it defaults to `"%T"`. Manually setting `format` will override the `use_12hr` setting.