Another type error fix ("The example shouldn't be a string either").

svn path=/nixos/trunk/; revision=31538
This commit is contained in:
Arie Middelkoop 2012-01-14 12:24:41 +00:00
parent 2f49427e4f
commit 609a02906e

View File

@ -48,13 +48,13 @@ let cfg = config.services.xserver.synaptics; in
tapButtons = mkOption { tapButtons = mkOption {
default = true; default = true;
example = "false"; example = false;
description = "Whether to enable tap buttons."; description = "Whether to enable tap buttons.";
}; };
palmDetect = mkOption { palmDetect = mkOption {
default = false; default = false;
example = "true"; example = true;
description = "Whether to enable palm detection (hardware support required)"; description = "Whether to enable palm detection (hardware support required)";
}; };