fix: bad unwrapSome usage
This commit is contained in:
parent
5da4058650
commit
5c593f6743
1 changed files with 2 additions and 2 deletions
|
|
@ -68,9 +68,9 @@ in rec {
|
||||||
mapAttrsRecursiveCond
|
mapAttrsRecursiveCond
|
||||||
cond
|
cond
|
||||||
(path: valueS: let
|
(path: valueS: let
|
||||||
valueT = attrValueAt T path;
|
maybeValueT = attrValueAt T path;
|
||||||
in
|
in
|
||||||
unwrapSome valueT (_: f valueS))
|
unwrapSome (_: f valueS) maybeValueT)
|
||||||
S;
|
S;
|
||||||
|
|
||||||
# mergeStruct ensures no properties are evaluated (entirely lazy)
|
# mergeStruct ensures no properties are evaluated (entirely lazy)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue