From f42468972cc3ec4048efd49c96e363ba81145bb9 Mon Sep 17 00:00:00 2001 From: Jeremy Fleischman Date: Wed, 23 Apr 2025 21:11:52 -0700 Subject: [PATCH] Fix typo: nix lists are space separated, not comma separated --- docs/user-guide/helpers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/helpers.md b/docs/user-guide/helpers.md index 9fd21e15..37d076f2 100644 --- a/docs/user-guide/helpers.md +++ b/docs/user-guide/helpers.md @@ -85,7 +85,7 @@ A certain number of helpers are defined that can be useful: This allows to define mixed table/list in lua: ```nix - (listToUnkeyedAttrs ["a", "b"]) // {foo = "bar";} + (listToUnkeyedAttrs ["a" "b"]) // {foo = "bar";} ``` Resulting in the following lua: