basic/spellcheck: pass a string to literalExpression

This commit is contained in:
NotAShelf 2024-04-09 10:04:09 +03:00
parent 3861d9a161
commit 576429ba5c
No known key found for this signature in database
GPG key ID: 02D1DD3FA08B6B29

View file

@ -19,7 +19,7 @@ in {
languages = mkOption {
type = listOf str;
default = ["en"];
example = literalExpression ["en" "de"];
example = literalExpression ''["en" "de"]'';
description = "The languages to be used for spellchecking";
};
};