Change triple single quotes to two single quotes

In Nix a multi line comment is two single quotes.
This commit is contained in:
Jacob Enders 2024-01-18 23:21:52 -05:00 committed by Gaétan Lepage
parent df7a90127b
commit c5143dc519

View file

@ -419,10 +419,10 @@ provided:
```nix
{
programs.nixvim = {
extraConfigLua = '''
extraConfigLua = ''
-- Print a little welcome message when nvim is opened!
print("Hello world!")
''';
'';
};
}
```