summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorDennis Gosnell <cdep.illabout@gmail.com>2021-04-25 16:16:25 +0900
committer(cdep)illabout <cdep.illabout@gmail.com>2021-05-02 13:35:08 +0900
commitba354d5ad802cdba3bf3d7436385020fa07a30b9 (patch)
tree38616ee2168744687ffee16fe5228d5478ac23ee /pkgs
parentd725ac794286e3464d80f5bce69da98ff4b2ebbf (diff)
downloadnixpkgs-ba354d5ad802cdba3bf3d7436385020fa07a30b9.tar
nixpkgs-ba354d5ad802cdba3bf3d7436385020fa07a30b9.tar.gz
nixpkgs-ba354d5ad802cdba3bf3d7436385020fa07a30b9.tar.bz2
nixpkgs-ba354d5ad802cdba3bf3d7436385020fa07a30b9.tar.lz
nixpkgs-ba354d5ad802cdba3bf3d7436385020fa07a30b9.tar.xz
nixpkgs-ba354d5ad802cdba3bf3d7436385020fa07a30b9.tar.zst
nixpkgs-ba354d5ad802cdba3bf3d7436385020fa07a30b9.zip
haskell.lib.setBuildTargets: fix spelling in doc string
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/haskell-modules/lib.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/lib.nix b/pkgs/development/haskell-modules/lib.nix
index 682953c3ce9..b0d036e0e3e 100644
--- a/pkgs/development/haskell-modules/lib.nix
+++ b/pkgs/development/haskell-modules/lib.nix
@@ -198,7 +198,7 @@ rec {
 
   /* Set a specific build target instead of compiling all targets in the package.
    * For example, imagine we have a .cabal file with a library, and 2 executables "dev" and "server".
-   * We can build only "server" and not wait on the compilation of "dev" by useing setBuildTarget as follows:
+   * We can build only "server" and not wait on the compilation of "dev" by using setBuildTarget as follows:
    *
    *   setBuildTarget (callCabal2nix "thePackageName" thePackageSrc {}) "server"
    *