Fix typos: s/the the/the/

This commit is contained in:
Daniel Hahler 2015-03-06 16:39:48 +01:00 committed by Eelco Dolstra
parent 17c71334e1
commit e659978ced
4 changed files with 4 additions and 4 deletions

View file

@ -416,7 +416,7 @@ $ nix-env --install gcc-3.3.2
installing `gcc-3.3.2' installing `gcc-3.3.2'
uninstalling `gcc-3.1'</screen> uninstalling `gcc-3.1'</screen>
Note the the previously installed version is removed, since Note the previously installed version is removed, since
<option>--preserve-installed</option> was not specified.</para> <option>--preserve-installed</option> was not specified.</para>
<para>To install an arbitrary version: <para>To install an arbitrary version:

View file

@ -197,7 +197,7 @@ collection</emphasis> (Nixpkgs).</para>
<simplesect><title>Managing build environments</title> <simplesect><title>Managing build environments</title>
<para>Nix is extremely useful for developers as it makes it easy to <para>Nix is extremely useful for developers as it makes it easy to
automatically set up the the build environment for a package. Given a automatically set up the build environment for a package. Given a
Nix expression that describes the dependencies of your package, the Nix expression that describes the dependencies of your package, the
command <command>nix-shell</command> will build or download those command <command>nix-shell</command> will build or download those
dependencies if theyre not already in your Nix store, and then start dependencies if theyre not already in your Nix store, and then start

View file

@ -1213,7 +1213,7 @@ static void prim_head(EvalState & state, const Pos & pos, Value * * args, Value
} }
/* Return a list consisting of everything but the the first element of /* Return a list consisting of everything but the first element of
a list. Warning: this function takes O(n) time, so you probably a list. Warning: this function takes O(n) time, so you probably
don't want to use it! */ don't want to use it! */
static void prim_tail(EvalState & state, const Pos & pos, Value * * args, Value & v) static void prim_tail(EvalState & state, const Pos & pos, Value * * args, Value & v)

View file

@ -96,7 +96,7 @@ Path addPermRoot(StoreAPI & store, const Path & _storePath,
"(are you running nix-build inside the store?)") % gcRoot); "(are you running nix-build inside the store?)") % gcRoot);
if (indirect) { if (indirect) {
/* Don't clobber the the link if it already exists and doesn't /* Don't clobber the link if it already exists and doesn't
point to the Nix store. */ point to the Nix store. */
if (pathExists(gcRoot) && (!isLink(gcRoot) || !isInStore(readLink(gcRoot)))) if (pathExists(gcRoot) && (!isLink(gcRoot) || !isInStore(readLink(gcRoot))))
throw Error(format("cannot create symlink %1%; already exists") % gcRoot); throw Error(format("cannot create symlink %1%; already exists") % gcRoot);