From e09dcfbdd97cf0abc2e3bf6b96912cb3c6966d2d Mon Sep 17 00:00:00 2001 From: Emile Clark-Boman Date: Thu, 18 Dec 2025 11:57:10 +1000 Subject: [PATCH] typo: "nullableToMany" --- nib/std/attrs.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nib/std/attrs.nix b/nib/std/attrs.nix index 3d49ff9..7fe7c75 100644 --- a/nib/std/attrs.nix +++ b/nib/std/attrs.nix @@ -1,6 +1,9 @@ {nib, ...}: let foldl = nib.std.foldl; - nullableToMaybe = nib.types.nullableToMany; + inherit + (nib.types) + nullableToMaybe + ; in rec { nameValuePair = name: value: {inherit name value;};