From da4adc2a4f9ef292b3923b2e60372027929ebb9e Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Thu, 1 May 2014 11:46:44 -0400 Subject: [PATCH] Fix description to match convention --- lib/types.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/types.nix b/lib/types.nix index 6ce54bfae4e..f5700ab0269 100644 --- a/lib/types.nix +++ b/lib/types.nix @@ -195,7 +195,7 @@ rec { }; enum = values: mkOptionType { - name = "one of ${concatStringsSep ", " values}."; + name = "one of ${concatStringsSep ", " values}"; check = flip elem values; merge = mergeOneOption; };