Skip to content

Commit

Permalink
lib: Fix dimen resource type typo
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaofengli committed Oct 7, 2021
1 parent ec4041f commit 707e89f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rec {
resourceValueXML = value: type: {
bool = lib.boolToString value;
color = value; # define our own specialized type for these?
dimension = value;
dimen = value;
integer = toString value;
string = value;
integer-array = lib.concatMapStringsSep "" (i: "<item>${toString i}</item>") value;
Expand Down

0 comments on commit 707e89f

Please sign in to comment.