From d8a8946ce428a2ea5309bcd119e212899be08c42 Mon Sep 17 00:00:00 2001 From: ElysianIguana <282770134+ElysianIguana@users.noreply.github.com> Date: Fri, 29 May 2026 16:57:52 +0000 Subject: [PATCH] Correct custom unit attribute syntax in default config examples --- cli/src/default_config.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/src/default_config.toml b/cli/src/default_config.toml index 3dbdf32f..159ed36d 100644 --- a/cli/src/default_config.toml +++ b/cli/src/default_config.toml @@ -86,7 +86,7 @@ other = {} # plural = 'miles' # plural name can be omitted if it is # # the same as the singular name # definition = '1609.344 meters' -# attribute = 'allow_long_prefix' +# attribute = 'allow-long-prefix' # ``` # # If the singular and plural names are the same, you can omit @@ -109,11 +109,11 @@ other = {} # [[custom-units]] # singular = 'milli' # definition = '0.001' -# attribute = 'is_long_prefix' +# attribute = 'is-long-prefix' # # [[custom-units]] # singular = 'byte' # plural = 'bytes' # definition = '!' # an exclamation mark defines a new base unit -# attribute = 'allow_long_prefix' +# attribute = 'allow-long-prefix' # ```