lib/helpers: fix typo in mkModeMaps (#238)

This commit is contained in:
Gaétan Lepage 2023-03-11 00:25:51 +01:00 committed by GitHub
parent 0bd07ee091
commit 8b21fd5872
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -101,7 +101,7 @@ with lib; rec {
actionAttrs = actionAttrs =
if isString action if isString action
then {inherit action;} then {inherit action;}
else value; else action;
in in
defaults // actionAttrs defaults // actionAttrs
) )