From 5fd4b365a809be16c68ec5232fcdd3dc4bb4ca6d Mon Sep 17 00:00:00 2001 From: Heitor Augusto Date: Wed, 18 Dec 2024 14:43:10 -0300 Subject: [PATCH] docs: remove unnecessary semicolons from map examples - Update map type examples to use consistent syntax without trailing semicolons - Fix documentation formatting across multiple sections in files.nix --- modules/files.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/files.nix b/modules/files.nix index 0df4f7e..8c5ccdc 100644 --- a/modules/files.nix +++ b/modules/files.nix @@ -59,7 +59,7 @@ - `raw`: The value is stored as-is. - `option`: The value is stored as an optional value. (e.g. `Some(value)` or `None`). - `char`: The value is stored as a single character. (e.g. `'a'`). - - `map`: The value is stored as a map. (e.g. `{ "key" = "value"; }`). + - `map`: The value is stored as a map. (e.g. `{ "key" = "value" }`). - `tuple`: The value is stored as a tuple. (e.g. `(1, 2, 3)`). - Named structs: A structured entry with a name identifier. @@ -86,7 +86,7 @@ - `raw`: The value is stored as-is. - `option`: The value is stored as an optional value. (e.g. `Some(value)` or `None`). - `char`: The value is stored as a single character. (e.g. `'a'`). - - `map`: The value is stored as a map. (e.g. `{ "key" = "value"; }`). + - `map`: The value is stored as a map. (e.g. `{ "key" = "value" }`). - `tuple`: The value is stored as a tuple. (e.g. `(1, 2, 3)`). - Named structs: A structured entry with a name identifier. @@ -132,7 +132,7 @@ - `raw`: The value is stored as-is. - `option`: The value is stored as an optional value. (e.g. `Some(value)` or `None`). - `char`: The value is stored as a single character. (e.g. `'a'`). - - `map`: The value is stored as a map. (e.g. `{ "key" = "value"; }`). + - `map`: The value is stored as a map. (e.g. `{ "key" = "value" }`). - `tuple`: The value is stored as a tuple. (e.g. `(1, 2, 3)`). - Named structs: A structured entry with a name identifier.