plugins/new-file-template: remove redundant example

This commit is contained in:
jacekpoz 2024-08-08 19:00:36 +02:00
parent ef9b08a462
commit 330154e44e
No known key found for this signature in database

View file

@ -39,7 +39,7 @@ in {
disableSpecific = mkOption { disableSpecific = mkOption {
type = attrsOf (listOf str); type = attrsOf (listOf str);
default = {}; default = {};
description = "Disable specific regexp for the default templates. Example: { ruby = [ \".*\" ]; }"; description = "Disable specific regexp for the default templates.";
example = "{ ruby = [\".*\"]; }"; example = "{ ruby = [\".*\"]; }";
}; };