modules/highlight: use double quotes in examples

This commit is contained in:
Gaetan Lepage 2023-12-05 11:18:59 +01:00 committed by Gaétan Lepage
parent e159e3f75e
commit 903e2a1ccb

View file

@ -12,7 +12,7 @@ with lib; {
description = "Define highlight groups";
example = ''
highlight = {
Comment.fg = '#ff0000';
Comment.fg = "#ff0000";
};
'';
};
@ -23,7 +23,7 @@ with lib; {
description = "Define match groups";
example = ''
match = {
ExtraWhitespace = '\\s\\+$';
ExtraWhitespace = "\\s\\+$";
};
'';
};