summary refs log tree commit diff
path: root/pkgs/lib/misc.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-09-22 09:26:18 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-09-22 09:26:18 +0000
commit12395c36a945f1a7f29554c05a6acd57c604e666 (patch)
treea1522670ccb342eb6374b2e93e28648d69fa719d /pkgs/lib/misc.nix
parent912e9f2c80a11a4eb4549b6aa3bbbcb4c620433b (diff)
downloadnixpkgs-12395c36a945f1a7f29554c05a6acd57c604e666.tar
nixpkgs-12395c36a945f1a7f29554c05a6acd57c604e666.tar.gz
nixpkgs-12395c36a945f1a7f29554c05a6acd57c604e666.tar.bz2
nixpkgs-12395c36a945f1a7f29554c05a6acd57c604e666.tar.lz
nixpkgs-12395c36a945f1a7f29554c05a6acd57c604e666.tar.xz
nixpkgs-12395c36a945f1a7f29554c05a6acd57c604e666.tar.zst
nixpkgs-12395c36a945f1a7f29554c05a6acd57c604e666.zip
* Typos.
svn path=/nixpkgs/trunk/; revision=17348
Diffstat (limited to 'pkgs/lib/misc.nix')
-rw-r--r--pkgs/lib/misc.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/lib/misc.nix b/pkgs/lib/misc.nix
index ba276f4ded7..f09ab33f721 100644
--- a/pkgs/lib/misc.nix
+++ b/pkgs/lib/misc.nix
@@ -244,7 +244,7 @@ rec {
 
   # calls a function (f attr value ) for each record item. returns a list
   mapAttrsFlatten = f : r : map (attr: f attr (builtins.getAttr attr r) ) (attrNames r);
-  mapRecordFlatten = builtins.trace "depreceated usage of mapRecordFlatten, use mapAttrsFlatten instead" mapAttrsFlatten;
+  mapRecordFlatten = builtins.trace "deprecated usage of mapRecordFlatten, use mapAttrsFlatten instead" mapAttrsFlatten;
 
   # attribute set containing one attribute
   nvs = name : value : listToAttrs [ (nameValuePair name value) ];
@@ -276,7 +276,7 @@ rec {
   # { buildInputs = [a b]; }
   # merging buildPhase does'nt really make sense. The cases will be rare where appending /prefixing will fit your needs?
   # in these cases the first buildPhase will override the second one
-  # ! depreceated, use mergeAttrByFunc instead
+  # ! deprecated, use mergeAttrByFunc instead
   mergeAttrsNoOverride = { mergeLists ? ["buildInputs" "propagatedBuildInputs"],
                            overrideSnd ? [ "buildPhase" ]
                          } : attrs1 : attrs2 :