From c5143dc519da82279de12df9068f570ea1ec2ca0 Mon Sep 17 00:00:00 2001 From: Jacob Enders Date: Thu, 18 Jan 2024 23:21:52 -0500 Subject: [PATCH] Change triple single quotes to two single quotes In Nix a multi line comment is two single quotes. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 348f5c22..eef8c36a 100644 --- a/README.md +++ b/README.md @@ -419,10 +419,10 @@ provided: ```nix { programs.nixvim = { - extraConfigLua = ''' + extraConfigLua = '' -- Print a little welcome message when nvim is opened! print("Hello world!") - '''; + ''; }; } ```