lol

Merge pull request #304327 from K900/bors-when

treewide: nuke remaining mdDoc leftovers

authored by

K900 and committed by
GitHub
fc69edcc 7d7fedce

+4 -4
+1 -1
nixos/modules/programs/bash/bash.nix
··· 30 30 /* 31 31 enable = mkOption { 32 32 default = true; 33 - description = lib.mdDoc '' 33 + description = '' 34 34 Whenever to configure Bash as an interactive shell. 35 35 Note that this tries to make Bash the default 36 36 {option}`users.defaultUserShell`,
+1 -1
nixos/modules/services/monitoring/grafana.nix
··· 682 682 683 683 # TODO Add "instrument_queries" option when upgrading to grafana 10.0 684 684 # instrument_queries = mkOption { 685 - # description = lib.mdDoc "Set to `true` to add metrics and tracing for database queries."; 685 + # description = "Set to `true` to add metrics and tracing for database queries."; 686 686 # default = false; 687 687 # type = types.bool; 688 688 # };
+2 -2
nixos/modules/services/web-apps/coder.nix
··· 75 75 environment = { 76 76 extra = mkOption { 77 77 type = types.attrs; 78 - description = lib.mdDoc "Extra environment variables to pass run Coder's server with. See Coder documentation."; 78 + description = "Extra environment variables to pass run Coder's server with. See Coder documentation."; 79 79 default = {}; 80 80 example = { 81 81 CODER_OAUTH2_GITHUB_ALLOW_SIGNUPS = true; ··· 84 84 }; 85 85 file = mkOption { 86 86 type = types.nullOr types.path; 87 - description = lib.mdDoc "Systemd environment file to add to Coder."; 87 + description = "Systemd environment file to add to Coder."; 88 88 default = null; 89 89 }; 90 90 };