diff --git a/doc/using/configuration.xml b/doc/using/configuration.xml index 1f0b824a0f6c..f4d6e9110064 100644 --- a/doc/using/configuration.xml +++ b/doc/using/configuration.xml @@ -216,7 +216,7 @@ The following configuration example only allows insecure packages with very short names: { - allowInsecurePredicate = (pkg: (builtins.stringLength (lib.getName pkg) <= 5); + allowInsecurePredicate = pkg: builtins.stringLength (lib.getName pkg) <= 5; }