fix(lib): Fix parens

This commit is contained in:
punkfairie 2024-11-04 20:54:51 -08:00
parent 0f2722c5f7
commit 80b67d9d9e
Signed by: punkfairie
GPG key ID: 01823C057725C266

View file

@ -53,7 +53,7 @@ in
# string -> string
# convert flavor to full theme name in kebab case
# a convenience to deal with the main flavor naming
getKebabTheme = flavor: (if flavor == "main" then "rose-pine" else "rose-pine-${flavor}");
getKebabTheme = flavor: if (flavor == "main") then "rose-pine" else "rose-pine-${flavor}";
# string -> string
# this capitalizes the first letter in a string,