summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorIngo Blechschmidt <iblech@web.de>2018-10-23 16:41:15 +0200
committerJoachim F <joachifm@users.noreply.github.com>2018-10-23 14:41:15 +0000
commit00b555ef889b900c32c36ef9ef7fa3fb725ae4b5 (patch)
tree672e44c4c91064783f64db094daa058bc5a4bbb8 /doc
parentb326148231572361e9391d68d6ff9160537c43fa (diff)
downloadnixlib-00b555ef889b900c32c36ef9ef7fa3fb725ae4b5.tar
nixlib-00b555ef889b900c32c36ef9ef7fa3fb725ae4b5.tar.gz
nixlib-00b555ef889b900c32c36ef9ef7fa3fb725ae4b5.tar.bz2
nixlib-00b555ef889b900c32c36ef9ef7fa3fb725ae4b5.tar.lz
nixlib-00b555ef889b900c32c36ef9ef7fa3fb725ae4b5.tar.xz
nixlib-00b555ef889b900c32c36ef9ef7fa3fb725ae4b5.tar.zst
nixlib-00b555ef889b900c32c36ef9ef7fa3fb725ae4b5.zip
nixpkgs docs: Fix tiny typo (#48477)
Diffstat (limited to 'doc')
-rw-r--r--doc/functions/overrides.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/functions/overrides.xml b/doc/functions/overrides.xml
index 99e2a63631a7..021c4b41c360 100644
--- a/doc/functions/overrides.xml
+++ b/doc/functions/overrides.xml
@@ -86,11 +86,11 @@ helloWithDebug = pkgs.hello.overrideAttrs (oldAttrs: rec {
     in this case, as it overrides only the attributes of the final derivation.
     It is for this reason that <varname>overrideAttrs</varname> should be
     preferred in (almost) all cases to <varname>overrideDerivation</varname>,
-    i.e. to allow using <varname>sdenv.mkDerivation</varname> to process input
+    i.e. to allow using <varname>stdenv.mkDerivation</varname> to process input
     arguments, as well as the fact that it is easier to use (you can use the
     same attribute names you see in your Nix code, instead of the ones
     generated (e.g. <varname>buildInputs</varname> vs
-    <varname>nativeBuildInputs</varname>, and involves less typing.
+    <varname>nativeBuildInputs</varname>), and it involves less typing).
    </para>
   </note>
  </section>