about summary refs log tree commit diff
path: root/pkgs/applications/editors/kakoune/plugins/aliases.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/editors/kakoune/plugins/aliases.nix')
-rw-r--r--pkgs/applications/editors/kakoune/plugins/aliases.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/editors/kakoune/plugins/aliases.nix b/pkgs/applications/editors/kakoune/plugins/aliases.nix
index cf9a65c43f2b3..2f097dee52757 100644
--- a/pkgs/applications/editors/kakoune/plugins/aliases.nix
+++ b/pkgs/applications/editors/kakoune/plugins/aliases.nix
@@ -1,8 +1,8 @@
 # Deprecated aliases - for backward compatibility
 
-lib: overriden:
+lib: overridden:
 
-with overriden;
+with overridden;
 
 let
   # Removing recurseForDerivation prevents derivations of aliased attribute
@@ -21,7 +21,7 @@ let
 
   # Make sure that we are not shadowing something from
   # all-packages.nix.
-  checkInPkgs = n: alias: if builtins.hasAttr n overriden
+  checkInPkgs = n: alias: if builtins.hasAttr n overridden
                           then throw "Alias ${n} is still in kakounePlugins"
                           else alias;