From 903e2a1ccb92f17ac5810bc1229f5dd0addd7ba6 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Tue, 5 Dec 2023 11:18:59 +0100 Subject: [PATCH] modules/highlight: use double quotes in examples --- modules/highlights.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/highlights.nix b/modules/highlights.nix index b3d4cb3f..fada97f8 100644 --- a/modules/highlights.nix +++ b/modules/highlights.nix @@ -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\\+$"; }; ''; };