Skip to content

Commit

Permalink
docs: remove unnecessary semicolons from map examples
Browse files Browse the repository at this point in the history
- Update map type examples to use consistent syntax without trailing semicolons
- Fix documentation formatting across multiple sections in files.nix
  • Loading branch information
HeitorAugustoLN committed Dec 18, 2024
1 parent 959f7b9 commit 5fd4b36
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/files.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit 5fd4b36

Please sign in to comment.