Fix typo: nix lists are space separated, not comma separated

This commit is contained in:
Jeremy Fleischman 2025-04-23 21:11:52 -07:00
parent 78f6ff0369
commit f42468972c
No known key found for this signature in database

View file

@ -85,7 +85,7 @@ A certain number of helpers are defined that can be useful:
This allows to define mixed table/list in lua: This allows to define mixed table/list in lua:
```nix ```nix
(listToUnkeyedAttrs ["a", "b"]) // {foo = "bar";} (listToUnkeyedAttrs ["a" "b"]) // {foo = "bar";}
``` ```
Resulting in the following lua: Resulting in the following lua: