From d7d80e8fdcd43e9f9f1f1cc2e79149932d4cbecf Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 16 Sep 2009 11:37:07 +0000 Subject: [PATCH] * Typos. svn path=/nixpkgs/trunk/; revision=17182 --- pkgs/lib/modules.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/lib/modules.nix b/pkgs/lib/modules.nix index 09f096eba18..81a4c43b2a9 100644 --- a/pkgs/lib/modules.nix +++ b/pkgs/lib/modules.nix @@ -159,10 +159,10 @@ rec { ); errorSource = modules: - "The error may comes from the following files:\n" + ( + "The error may come from the following files:\n" + ( lib.concatStringsSep "\n" ( map (m: - if m ? key then toString m.key else "" + if m ? key then toString m.key else "" ) modules ) );